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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 public_configs = [ ":static_switches_defines" ] | 85 public_configs = [ ":static_switches_defines" ] |
86 } | 86 } |
87 | 87 |
88 source_set("common_sources") { | 88 source_set("common_sources") { |
89 # External code should depend on via ":common" above. | 89 # External code should depend on via ":common" above. |
90 visibility = [ "//content/*" ] | 90 visibility = [ "//content/*" ] |
91 | 91 |
92 sources = [ | 92 sources = [ |
93 "appcache_info.h", | 93 "appcache_info.h", |
94 "bindings_policy.h", | 94 "bindings_policy.h", |
95 "browser_plugin_guest_mode.cc", | |
96 "browser_plugin_guest_mode.h", | |
97 "browser_side_navigation_policy.cc", | 95 "browser_side_navigation_policy.cc", |
98 "browser_side_navigation_policy.h", | 96 "browser_side_navigation_policy.h", |
99 "cdm_info.h", | 97 "cdm_info.h", |
100 "child_process_host.h", | 98 "child_process_host.h", |
101 "child_process_host_delegate.cc", | 99 "child_process_host_delegate.cc", |
102 "child_process_host_delegate.h", | 100 "child_process_host_delegate.h", |
103 "child_process_sandbox_support_linux.h", | 101 "child_process_sandbox_support_linux.h", |
104 "color_suggestion.cc", | 102 "color_suggestion.cc", |
105 "color_suggestion.h", | 103 "color_suggestion.h", |
106 "common_param_traits.cc", | 104 "common_param_traits.cc", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 source_set("feature_h264_with_openh264_ffmpeg") { | 288 source_set("feature_h264_with_openh264_ffmpeg") { |
291 deps = [ | 289 deps = [ |
292 ":features", | 290 ":features", |
293 "//base", | 291 "//base", |
294 ] | 292 ] |
295 sources = [ | 293 sources = [ |
296 "feature_h264_with_openh264_ffmpeg.cc", | 294 "feature_h264_with_openh264_ffmpeg.cc", |
297 "feature_h264_with_openh264_ffmpeg.h", | 295 "feature_h264_with_openh264_ffmpeg.h", |
298 ] | 296 ] |
299 } | 297 } |
OLD | NEW |