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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "//cc", | 100 "//cc", |
101 "//cc/surfaces", | 101 "//cc/surfaces", |
102 "//components/scheduler:common", | 102 "//components/scheduler:common", |
103 "//content/app/resources", | 103 "//content/app/resources", |
104 "//content/app/strings", | 104 "//content/app/strings", |
105 "//content/browser/devtools:gen_devtools_protocol_handler", | 105 "//content/browser/devtools:gen_devtools_protocol_handler", |
106 "//content/browser/devtools:resources", | 106 "//content/browser/devtools:resources", |
107 "//content/common:mojo_bindings", | 107 "//content/common:mojo_bindings", |
108 "//content/public/common:mojo_bindings", | 108 "//content/public/common:mojo_bindings", |
109 "//device/bluetooth", | 109 "//device/bluetooth", |
| 110 "//mojo/application/public/interfaces", |
110 "//storage/browser", | 111 "//storage/browser", |
111 "//storage/common", | 112 "//storage/common", |
112 "//third_party/WebKit/public:image_resources", | 113 "//third_party/WebKit/public:image_resources", |
113 "//third_party/WebKit/public:resources", | 114 "//third_party/WebKit/public:resources", |
114 "//third_party/angle:commit_id", | 115 "//third_party/angle:commit_id", |
115 "//third_party/icu", | 116 "//third_party/icu", |
116 "//third_party/leveldatabase", | 117 "//third_party/leveldatabase", |
117 "//third_party/libyuv", | 118 "//third_party/libyuv", |
118 "//third_party/mojo/src/mojo/public/cpp/bindings", | 119 "//third_party/mojo/src/mojo/public/cpp/bindings", |
119 "//third_party/mojo/src/mojo/public/interfaces/application", | |
120 "//third_party/mojo/src/mojo/public/js", | 120 "//third_party/mojo/src/mojo/public/js", |
121 "//ui/events/blink", | 121 "//ui/events/blink", |
122 "//ui/resources", | 122 "//ui/resources", |
123 "//ui/surface", | 123 "//ui/surface", |
124 "//ui/touch_selection", | 124 "//ui/touch_selection", |
125 ] | 125 ] |
126 } | 126 } |
127 | 127 |
128 configs += [ | 128 configs += [ |
129 "//content:content_implementation", | 129 "//content:content_implementation", |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 } | 458 } |
459 | 459 |
460 if (is_linux && use_openssl) { | 460 if (is_linux && use_openssl) { |
461 deps += [ "//third_party/boringssl" ] | 461 deps += [ "//third_party/boringssl" ] |
462 } | 462 } |
463 | 463 |
464 if (enable_media_mojo_renderer) { | 464 if (enable_media_mojo_renderer) { |
465 deps += [ "//media/mojo/services:renderer_service" ] | 465 deps += [ "//media/mojo/services:renderer_service" ] |
466 } | 466 } |
467 } | 467 } |
OLD | NEW |