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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol
_dispatcher.h", | 93 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol
_dispatcher.h", |
94 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 94 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
95 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 95 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
96 ], | 96 ], |
97 ".") | 97 ".") |
98 | 98 |
99 # Non-iOS deps. | 99 # Non-iOS deps. |
100 deps += [ | 100 deps += [ |
101 "//cc", | 101 "//cc", |
102 "//cc/surfaces", | 102 "//cc/surfaces", |
| 103 "//components/scheduler:common", |
103 "//content/app/resources", | 104 "//content/app/resources", |
104 "//content/app/strings", | 105 "//content/app/strings", |
105 "//content/browser/devtools:resources", | 106 "//content/browser/devtools:resources", |
106 "//content/common:mojo_bindings", | 107 "//content/common:mojo_bindings", |
107 "//content/public/common:mojo_bindings", | 108 "//content/public/common:mojo_bindings", |
108 "//device/bluetooth", | 109 "//device/bluetooth", |
109 "//storage/browser", | 110 "//storage/browser", |
110 "//storage/common", | 111 "//storage/common", |
111 "//third_party/WebKit/public:image_resources", | 112 "//third_party/WebKit/public:image_resources", |
112 "//third_party/WebKit/public:resources", | 113 "//third_party/WebKit/public:resources", |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 } | 464 } |
464 | 465 |
465 if (is_linux && use_openssl) { | 466 if (is_linux && use_openssl) { |
466 deps += [ "//third_party/boringssl" ] | 467 deps += [ "//third_party/boringssl" ] |
467 } | 468 } |
468 | 469 |
469 if (enable_media_mojo_renderer) { | 470 if (enable_media_mojo_renderer) { |
470 deps += [ "//media/mojo/services:renderer_service" ] | 471 deps += [ "//media/mojo/services:renderer_service" ] |
471 } | 472 } |
472 } | 473 } |
OLD | NEW |