OLD | NEW |
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 Loading... |
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 source_set("feature_h264_with_openh264_ffmpeg") { | 294 source_set("feature_h264_with_openh264_ffmpeg") { |
293 deps = [ | 295 deps = [ |
294 ":features", | 296 ":features", |
295 "//base", | 297 "//base", |
296 ] | 298 ] |
297 sources = [ | 299 sources = [ |
298 "feature_h264_with_openh264_ffmpeg.cc", | 300 "feature_h264_with_openh264_ffmpeg.cc", |
299 "feature_h264_with_openh264_ffmpeg.h", | 301 "feature_h264_with_openh264_ffmpeg.h", |
300 ] | 302 ] |
301 } | 303 } |
OLD | NEW |