| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 11 if (is_mac) { | 11 if (is_mac) { |
| 12 import("//build/config/mac/mac_sdk.gni") | 12 import("//build/config/mac/mac_sdk.gni") |
| 13 } | 13 } |
| 14 | 14 |
| 15 source_set("common") { | 15 source_set("common") { |
| 16 # Targets external to content should always link to the public API. | 16 # Targets external to content should always link to the public API. |
| 17 # In addition, targets outside of the content component (shell and tests) | 17 # In addition, targets outside of the content component (shell and tests) |
| 18 # must not link to this because it will duplicate the code in the component | 18 # must not link to this because it will duplicate the code in the component |
| 19 # build. | 19 # build. |
| 20 visibility = [ "//content/*" ] | 20 visibility = [ "//content/*" ] |
| 21 | 21 |
| 22 sources = rebase_path(content_common_gypi_values.private_common_sources, | 22 sources = rebase_path(content_common_gypi_values.private_common_sources, |
| 23 ".", | 23 ".", |
| 24 "//content") | 24 "//content") |
| 25 | 25 |
| 26 configs += [ | 26 configs += [ |
| 27 "//content:content_implementation", | 27 "//content:content_implementation", |
| 28 "//build/config:precompiled_headers", | 28 "//build/config:precompiled_headers", |
| 29 "//build/config/compiler:no_size_t_to_int_warning", | 29 "//build/config/compiler:no_size_t_to_int_warning", |
| 30 "//media/gpu:gpu_config", |
| 30 ] | 31 ] |
| 31 | 32 |
| 32 public_deps = [ | 33 public_deps = [ |
| 33 ":mojo_bindings", | 34 ":mojo_bindings", |
| 34 "//gpu/command_buffer/common", | 35 "//gpu/command_buffer/common", |
| 35 "//ipc", | 36 "//ipc", |
| 36 "//third_party/WebKit/public:blink_headers", | 37 "//third_party/WebKit/public:blink_headers", |
| 37 ] | 38 ] |
| 38 deps = [ | 39 deps = [ |
| 39 "//base", | 40 "//base", |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "//device/sensors/public/interfaces", | 256 "//device/sensors/public/interfaces", |
| 256 "//services/shell/public/interfaces", | 257 "//services/shell/public/interfaces", |
| 257 "//services/ui/public/interfaces", | 258 "//services/ui/public/interfaces", |
| 258 "//skia/public/interfaces", | 259 "//skia/public/interfaces", |
| 259 "//third_party/WebKit/public:mojo_bindings", | 260 "//third_party/WebKit/public:mojo_bindings", |
| 260 "//ui/gfx/geometry/mojo", | 261 "//ui/gfx/geometry/mojo", |
| 261 "//url/mojo:url_mojom_gurl", | 262 "//url/mojo:url_mojom_gurl", |
| 262 "//url/mojo:url_mojom_origin", | 263 "//url/mojo:url_mojom_origin", |
| 263 ] | 264 ] |
| 264 } | 265 } |
| OLD | NEW |