| 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/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "//third_party/WebKit/public:debug_devtools", | 193 "//third_party/WebKit/public:debug_devtools", |
| 194 ] | 194 ] |
| 195 | 195 |
| 196 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 196 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
| 197 | 197 |
| 198 public_deps = [ | 198 public_deps = [ |
| 199 # This exposes all public content APIs. | 199 # This exposes all public content APIs. |
| 200 "//content/public/app:both", | 200 "//content/public/app:both", |
| 201 "//content/public/browser", | 201 "//content/public/browser", |
| 202 "//content/public/common", | 202 "//content/public/common", |
| 203 "//content/public/plugin", | |
| 204 "//content/public/renderer", | 203 "//content/public/renderer", |
| 205 "//content/public/utility", | 204 "//content/public/utility", |
| 206 ] | 205 ] |
| 207 deps = [ | 206 deps = [ |
| 208 ":mojo_bindings", | 207 ":mojo_bindings", |
| 209 ":resources", | 208 ":resources", |
| 210 "//base", | 209 "//base", |
| 211 "//base:base_static", | 210 "//base:base_static", |
| 212 "//base/third_party/dynamic_annotations", | 211 "//base/third_party/dynamic_annotations", |
| 213 "//cc", | 212 "//cc", |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 ":content_shell_lib", | 523 ":content_shell_lib", |
| 525 ] | 524 ] |
| 526 } | 525 } |
| 527 } | 526 } |
| 528 | 527 |
| 529 mojom("mojo_bindings") { | 528 mojom("mojo_bindings") { |
| 530 sources = [ | 529 sources = [ |
| 531 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 530 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 532 ] | 531 ] |
| 533 } | 532 } |
| OLD | NEW |