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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 # containing the generated code so it should be sufficient to just depend | 82 # containing the generated code so it should be sufficient to just depend |
83 # on the grit rule. But maybe some of these will need to be added? | 83 # on the grit rule. But maybe some of these will need to be added? |
84 # | 84 # |
85 # Need this annoying rebase_path call to match what happened with the | 85 # Need this annoying rebase_path call to match what happened with the |
86 # sources. | 86 # sources. |
87 sources -= rebase_path( | 87 sources -= rebase_path( |
88 [ | 88 [ |
89 "$root_gen_dir/blink/grit/devtools_resources.h", | 89 "$root_gen_dir/blink/grit/devtools_resources.h", |
90 "$root_gen_dir/blink/grit/devtools_resources_map.cc", | 90 "$root_gen_dir/blink/grit/devtools_resources_map.cc", |
91 "$root_gen_dir/blink/grit/devtools_resources_map.h", | 91 "$root_gen_dir/blink/grit/devtools_resources_map.h", |
92 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol
_dispatcher.cc", | |
93 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol
_dispatcher.h", | |
94 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 92 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
95 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 93 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
96 ], | 94 ], |
97 ".") | 95 ".") |
98 | 96 |
99 # Non-iOS deps. | 97 # Non-iOS deps. |
100 deps += [ | 98 deps += [ |
101 "//cc", | 99 "//cc", |
102 "//cc/surfaces", | 100 "//cc/surfaces", |
103 "//components/scheduler:common", | 101 "//components/scheduler:common", |
104 "//content/app/resources", | 102 "//content/app/resources", |
105 "//content/app/strings", | 103 "//content/app/strings", |
| 104 "//content/browser/devtools:gen_devtools_protocol_handler", |
106 "//content/browser/devtools:resources", | 105 "//content/browser/devtools:resources", |
107 "//content/common:mojo_bindings", | 106 "//content/common:mojo_bindings", |
108 "//content/public/common:mojo_bindings", | 107 "//content/public/common:mojo_bindings", |
109 "//device/bluetooth", | 108 "//device/bluetooth", |
110 "//storage/browser", | 109 "//storage/browser", |
111 "//storage/common", | 110 "//storage/common", |
112 "//third_party/WebKit/public:image_resources", | 111 "//third_party/WebKit/public:image_resources", |
113 "//third_party/WebKit/public:resources", | 112 "//third_party/WebKit/public:resources", |
114 "//third_party/angle:commit_id", | 113 "//third_party/angle:commit_id", |
115 "//third_party/icu", | 114 "//third_party/icu", |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 } | 458 } |
460 | 459 |
461 if (is_linux && use_openssl) { | 460 if (is_linux && use_openssl) { |
462 deps += [ "//third_party/boringssl" ] | 461 deps += [ "//third_party/boringssl" ] |
463 } | 462 } |
464 | 463 |
465 if (enable_media_mojo_renderer) { | 464 if (enable_media_mojo_renderer) { |
466 deps += [ "//media/mojo/services:renderer_service" ] | 465 deps += [ "//media/mojo/services:renderer_service" ] |
467 } | 466 } |
468 } | 467 } |
OLD | NEW |