| 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 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 source_set("common") { | 128 source_set("common") { |
| 129 # Only the public target should depend on this. All other targets (even | 129 # Only the public target should depend on this. All other targets (even |
| 130 # internal content ones) should depend on the public one. | 130 # internal content ones) should depend on the public one. |
| 131 visibility = [ "//content/public/common:common_sources" ] | 131 visibility = [ "//content/public/common:common_sources" ] |
| 132 | 132 |
| 133 sources = rebase_path(content_common_gypi_values.private_common_sources, | 133 sources = rebase_path(content_common_gypi_values.private_common_sources, |
| 134 ".", | 134 ".", |
| 135 "//content") | 135 "//content") |
| 136 | 136 |
| 137 # These files are only built in a GN build because they bring in | |
| 138 # dependencies that don't build with GYP. | |
| 139 sources += [ | |
| 140 "mojo/mojo_shell_connection_impl.cc", | |
| 141 "mojo/mojo_shell_connection_impl.h", | |
| 142 ] | |
| 143 | |
| 144 configs += [ | 137 configs += [ |
| 145 "//content:content_implementation", | 138 "//content:content_implementation", |
| 146 "//build/config:precompiled_headers", | 139 "//build/config:precompiled_headers", |
| 147 "//build/config/compiler:no_size_t_to_int_warning", | 140 "//build/config/compiler:no_size_t_to_int_warning", |
| 148 ] | 141 ] |
| 149 | 142 |
| 150 public_deps = [ | 143 public_deps = [ |
| 151 "//gpu/command_buffer/common", | 144 "//gpu/command_buffer/common", |
| 152 "//ipc", | 145 "//ipc", |
| 153 "//third_party/WebKit/public:blink_headers", | 146 "//third_party/WebKit/public:blink_headers", |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 | 542 |
| 550 public_deps = [ | 543 public_deps = [ |
| 551 "//components/leveldb/public/interfaces", | 544 "//components/leveldb/public/interfaces", |
| 552 "//components/mus/public/interfaces", | 545 "//components/mus/public/interfaces", |
| 553 "//content/public/common:mojo_bindings", | 546 "//content/public/common:mojo_bindings", |
| 554 "//mojo/shell/public/interfaces", | 547 "//mojo/shell/public/interfaces", |
| 555 "//skia/public/interfaces", | 548 "//skia/public/interfaces", |
| 556 "//ui/mojo/geometry:interfaces", | 549 "//ui/mojo/geometry:interfaces", |
| 557 ] | 550 ] |
| 558 } | 551 } |
| OLD | NEW |