| 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("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| 11 import("//ppapi/features/features.gni") | 11 import("//ppapi/features/features.gni") |
| 12 import("//third_party/webrtc/webrtc.gni") | 12 import("//third_party/webrtc/webrtc.gni") |
| 13 import("//content/content.gni") |
| 13 | 14 |
| 14 # See //content/BUILD.gn for how this works. | 15 # See //content/BUILD.gn for how this works. |
| 15 group("common") { | 16 group("common") { |
| 16 if (is_component_build) { | 17 if (is_component_build) { |
| 17 public_deps = [ | 18 public_deps = [ |
| 18 "//content", | 19 "//content", |
| 19 ] | 20 ] |
| 20 } else { | 21 } else { |
| 21 public_deps = [ | 22 public_deps = [ |
| 22 ":common_sources", | 23 ":common_sources", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//content/common/content_export.h", | 96 "//content/common/content_export.h", |
| 96 "content_features.cc", | 97 "content_features.cc", |
| 97 ] | 98 ] |
| 98 public_deps = [ | 99 public_deps = [ |
| 99 "//base", | 100 "//base", |
| 100 ] | 101 ] |
| 101 | 102 |
| 102 public_configs = [ ":static_switches_defines" ] | 103 public_configs = [ ":static_switches_defines" ] |
| 103 } | 104 } |
| 104 | 105 |
| 105 source_set("common_sources") { | 106 content_source_set("common_sources") { |
| 106 # External code should depend on via ":common" above. | 107 # External code should depend on via ":common" above. |
| 107 visibility = [ "//content/*" ] | 108 visibility = [ "//content/*" ] |
| 108 | 109 |
| 109 sources = [ | 110 sources = [ |
| 110 "appcache_info.h", | 111 "appcache_info.h", |
| 111 "associated_interface_provider.h", | 112 "associated_interface_provider.h", |
| 112 "associated_interface_registry.h", | 113 "associated_interface_registry.h", |
| 113 "bind_interface_helpers.h", | 114 "bind_interface_helpers.h", |
| 114 "bindings_policy.h", | 115 "bindings_policy.h", |
| 115 "browser_controls_state.h", | 116 "browser_controls_state.h", |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 sources = [ | 385 sources = [ |
| 385 "service_names.mojom", | 386 "service_names.mojom", |
| 386 ] | 387 ] |
| 387 } | 388 } |
| 388 | 389 |
| 389 mojom("resource_type_bindings") { | 390 mojom("resource_type_bindings") { |
| 390 sources = [ | 391 sources = [ |
| 391 "resource_type.mojom", | 392 "resource_type.mojom", |
| 392 ] | 393 ] |
| 393 } | 394 } |
| OLD | NEW |