| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//base:base_static", | 31 "//base:base_static", |
| 32 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
| 33 "//cc", | 33 "//cc", |
| 34 "//cc/surfaces", | 34 "//cc/surfaces", |
| 35 "//components/filesystem:lib", | 35 "//components/filesystem:lib", |
| 36 "//components/leveldb:lib", | 36 "//components/leveldb:lib", |
| 37 "//components/mime_util", | 37 "//components/mime_util", |
| 38 "//components/profile_service:lib", | |
| 39 "//components/profile_service/public/cpp", | |
| 40 "//components/scheduler:common", | 38 "//components/scheduler:common", |
| 41 "//components/tracing", | 39 "//components/tracing", |
| 42 "//components/tracing:startup_tracing", | 40 "//components/tracing:startup_tracing", |
| 43 "//components/url_formatter", | 41 "//components/url_formatter", |
| 44 "//content:resources", | 42 "//content:resources", |
| 45 "//content/app/resources", | 43 "//content/app/resources", |
| 46 "//content/app/strings", | 44 "//content/app/strings", |
| 47 "//content/browser/background_sync:background_sync_proto", | 45 "//content/browser/background_sync:background_sync_proto", |
| 48 "//content/browser/cache_storage:cache_storage_proto", | 46 "//content/browser/cache_storage:cache_storage_proto", |
| 49 "//content/browser/devtools:gen_devtools_protocol_handler", | 47 "//content/browser/devtools:gen_devtools_protocol_handler", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 70 "//mojo/converters/geometry", | 68 "//mojo/converters/geometry", |
| 71 "//mojo/public/cpp/bindings", | 69 "//mojo/public/cpp/bindings", |
| 72 "//mojo/public/js", | 70 "//mojo/public/js", |
| 73 "//net", | 71 "//net", |
| 74 "//net:extras", | 72 "//net:extras", |
| 75 "//services/shell", | 73 "//services/shell", |
| 76 "//services/shell/public/cpp:cpp_for_chromium", | 74 "//services/shell/public/cpp:cpp_for_chromium", |
| 77 "//services/shell/public/interfaces", | 75 "//services/shell/public/interfaces", |
| 78 "//services/shell/runner/common", | 76 "//services/shell/runner/common", |
| 79 "//services/shell/runner/host:lib", | 77 "//services/shell/runner/host:lib", |
| 78 "//services/user:lib", |
| 79 "//services/user/public/cpp", |
| 80 "//skia", | 80 "//skia", |
| 81 "//skia/public", | 81 "//skia/public", |
| 82 "//sql", | 82 "//sql", |
| 83 "//storage/browser", | 83 "//storage/browser", |
| 84 "//storage/common", | 84 "//storage/common", |
| 85 | 85 |
| 86 # TODO(brettw) bug 582206: Blink should not be used in the browser | 86 # TODO(brettw) bug 582206: Blink should not be used in the browser |
| 87 # process. This is required by devtools' input_handler.cc which calls | 87 # process. This is required by devtools' input_handler.cc which calls |
| 88 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode | 88 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode |
| 89 "//third_party/WebKit/public:blink", | 89 "//third_party/WebKit/public:blink", |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 | 524 |
| 525 # See comment at the top of //content/BUILD.gn for how this works. | 525 # See comment at the top of //content/BUILD.gn for how this works. |
| 526 group("for_content_tests") { | 526 group("for_content_tests") { |
| 527 visibility = [ "//content/test/*" ] | 527 visibility = [ "//content/test/*" ] |
| 528 if (!is_component_build) { | 528 if (!is_component_build) { |
| 529 public_deps = [ | 529 public_deps = [ |
| 530 ":browser", | 530 ":browser", |
| 531 ] | 531 ] |
| 532 } | 532 } |
| 533 } | 533 } |
| OLD | NEW |