| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 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 "associated_interface_provider.h", |
| 95 "associated_interface_registry.h", |
| 94 "bindings_policy.h", | 96 "bindings_policy.h", |
| 95 "browser_plugin_guest_mode.cc", | 97 "browser_plugin_guest_mode.cc", |
| 96 "browser_plugin_guest_mode.h", | 98 "browser_plugin_guest_mode.h", |
| 97 "browser_side_navigation_policy.cc", | 99 "browser_side_navigation_policy.cc", |
| 98 "browser_side_navigation_policy.h", | 100 "browser_side_navigation_policy.h", |
| 99 "cdm_info.h", | 101 "cdm_info.h", |
| 100 "child_process_host.h", | 102 "child_process_host.h", |
| 101 "child_process_host_delegate.cc", | 103 "child_process_host_delegate.cc", |
| 102 "child_process_host_delegate.h", | 104 "child_process_host_delegate.h", |
| 103 "child_process_sandbox_support_linux.h", | 105 "child_process_sandbox_support_linux.h", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |