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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "//gpu", | 62 "//gpu", |
63 "//gpu/command_buffer/client:gles2_implementation", | 63 "//gpu/command_buffer/client:gles2_implementation", |
64 "//ipc/mojo", | 64 "//ipc/mojo", |
65 "//media", | 65 "//media", |
66 "//media/midi", | 66 "//media/midi", |
67 "//mojo/common", | 67 "//mojo/common", |
68 "//mojo/common:url_type_converters", | 68 "//mojo/common:url_type_converters", |
69 "//mojo/converters/geometry", | 69 "//mojo/converters/geometry", |
70 "//mojo/public/cpp/bindings", | 70 "//mojo/public/cpp/bindings", |
71 "//mojo/public/js", | 71 "//mojo/public/js", |
72 "//mojo/shell", | |
73 "//mojo/shell/public/cpp:cpp_for_chromium", | |
74 "//mojo/shell/public/interfaces", | |
75 "//mojo/shell/runner/common", | |
76 "//mojo/shell/runner/host:lib", | |
77 "//net", | 72 "//net", |
78 "//net:extras", | 73 "//net:extras", |
| 74 "//services/shell", |
| 75 "//services/shell/public/cpp:cpp_for_chromium", |
| 76 "//services/shell/public/interfaces", |
| 77 "//services/shell/runner/common", |
| 78 "//services/shell/runner/host:lib", |
79 "//skia", | 79 "//skia", |
80 "//skia/public", | 80 "//skia/public", |
81 "//sql", | 81 "//sql", |
82 "//storage/browser", | 82 "//storage/browser", |
83 "//storage/common", | 83 "//storage/common", |
84 | 84 |
85 # TODO(brettw) bug 582206: Blink should not be used in the browser | 85 # TODO(brettw) bug 582206: Blink should not be used in the browser |
86 # process. This is required by devtools' input_handler.cc which calls | 86 # process. This is required by devtools' input_handler.cc which calls |
87 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode | 87 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode |
88 "//third_party/WebKit/public:blink", | 88 "//third_party/WebKit/public:blink", |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 | 523 |
524 # See comment at the top of //content/BUILD.gn for how this works. | 524 # See comment at the top of //content/BUILD.gn for how this works. |
525 group("for_content_tests") { | 525 group("for_content_tests") { |
526 visibility = [ "//content/test/*" ] | 526 visibility = [ "//content/test/*" ] |
527 if (!is_component_build) { | 527 if (!is_component_build) { |
528 public_deps = [ | 528 public_deps = [ |
529 ":browser", | 529 ":browser", |
530 ] | 530 ] |
531 } | 531 } |
532 } | 532 } |
OLD | NEW |