| 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/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//services/shell/runner/common", | 78 "//services/shell/runner/common", |
| 79 "//services/shell/runner/host:lib", | 79 "//services/shell/runner/host:lib", |
| 80 "//services/user:lib", | 80 "//services/user:lib", |
| 81 "//services/user/public/cpp", | 81 "//services/user/public/cpp", |
| 82 "//services/user/public/interfaces", | 82 "//services/user/public/interfaces", |
| 83 "//skia", | 83 "//skia", |
| 84 "//skia/public", | 84 "//skia/public", |
| 85 "//sql", | 85 "//sql", |
| 86 "//storage/browser", | 86 "//storage/browser", |
| 87 "//storage/common", | 87 "//storage/common", |
| 88 |
| 89 # TODO(brettw) bug 582206: Blink should not be used in the browser |
| 90 # process. This is required by devtools' input_handler.cc which calls |
| 91 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode |
| 92 "//third_party/WebKit/public:blink", |
| 88 "//third_party/WebKit/public:blink_headers", | 93 "//third_party/WebKit/public:blink_headers", |
| 89 "//third_party/WebKit/public:image_resources", | 94 "//third_party/WebKit/public:image_resources", |
| 90 "//third_party/WebKit/public:resources", | 95 "//third_party/WebKit/public:resources", |
| 91 "//third_party/angle:angle_common", | 96 "//third_party/angle:angle_common", |
| 92 "//third_party/icu", | 97 "//third_party/icu", |
| 93 "//third_party/kasko:kasko_features", | 98 "//third_party/kasko:kasko_features", |
| 94 "//third_party/leveldatabase", | 99 "//third_party/leveldatabase", |
| 95 "//third_party/libyuv", | 100 "//third_party/libyuv", |
| 96 "//third_party/re2", | 101 "//third_party/re2", |
| 97 "//third_party/zlib", | 102 "//third_party/zlib", |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 533 |
| 529 # See comment at the top of //content/BUILD.gn for how this works. | 534 # See comment at the top of //content/BUILD.gn for how this works. |
| 530 group("for_content_tests") { | 535 group("for_content_tests") { |
| 531 visibility = [ "//content/test/*" ] | 536 visibility = [ "//content/test/*" ] |
| 532 if (!is_component_build) { | 537 if (!is_component_build) { |
| 533 public_deps = [ | 538 public_deps = [ |
| 534 ":browser", | 539 ":browser", |
| 535 ] | 540 ] |
| 536 } | 541 } |
| 537 } | 542 } |
| OLD | NEW |