Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: content/public/common/BUILD.gn

Issue 2305913002: Use ChannelMojo from the browser to NaCl loader process. (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//third_party/webrtc/build/webrtc.gni") 9 import("//third_party/webrtc/build/webrtc.gni")
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 config("static_switches_defines") { 51 config("static_switches_defines") {
52 defines = [ "COMPILE_CONTENT_STATICALLY" ] 52 defines = [ "COMPILE_CONTENT_STATICALLY" ]
53 } 53 }
54 54
55 # This target allows you to use the content_switches constants and statically 55 # This target allows you to use the content_switches constants and statically
56 # link to it, without depending on the rest of content. This is only for use 56 # link to it, without depending on the rest of content. This is only for use
57 # without content, or you will get multiply defined symbols. 57 # without content, or you will get multiply defined symbols.
58 source_set("static_switches") { 58 source_set("static_switches") {
59 public = [ 59 public = [
60 "content_switches.h", 60 "content_switches.h",
61 "mojo_channel_switches.h",
61 ] 62 ]
62 sources = [ 63 sources = [
63 "//content/common/content_export.h", 64 "//content/common/content_export.h",
64 "content_switches.cc", 65 "content_switches.cc",
66 "mojo_channel_switches.cc",
65 ] 67 ]
66 68
67 public_configs = [ ":static_switches_defines" ] 69 public_configs = [ ":static_switches_defines" ]
68 } 70 }
69 71
70 # This target allows you to use the content_features constants and statically 72 # This target allows you to use the content_features constants and statically
71 # link to it, without depending on the rest of content. This is only for use 73 # link to it, without depending on the rest of content. This is only for use
72 # without content, or you will get multiply defined symbols. 74 # without content, or you will get multiply defined symbols.
73 source_set("static_features") { 75 source_set("static_features") {
74 public = [ 76 public = [
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 source_set("feature_h264_with_openh264_ffmpeg") { 292 source_set("feature_h264_with_openh264_ffmpeg") {
291 deps = [ 293 deps = [
292 ":features", 294 ":features",
293 "//base", 295 "//base",
294 ] 296 ]
295 sources = [ 297 sources = [
296 "feature_h264_with_openh264_ffmpeg.cc", 298 "feature_h264_with_openh264_ffmpeg.cc",
297 "feature_h264_with_openh264_ffmpeg.h", 299 "feature_h264_with_openh264_ffmpeg.h",
298 ] 300 ]
299 } 301 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698