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 | 8 |
9 config("storage_config") { | 9 config("storage_config") { |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", | 80 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", |
81 "$root_gen_dir/webkit/grit/devtools_resources_map.h", | 81 "$root_gen_dir/webkit/grit/devtools_resources_map.h", |
82 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 82 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
83 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 83 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
84 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", | 84 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", |
85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", | 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", |
86 ], ".") | 86 ], ".") |
87 | 87 |
88 # Non-iOS deps. | 88 # Non-iOS deps. |
89 deps += [ | 89 deps += [ |
| 90 "//cc", |
| 91 "//cc/surfaces", |
| 92 "//content/app/strings", |
90 "//content/browser/devtools:resources", | 93 "//content/browser/devtools:resources", |
91 "//content/common:mojo_bindings", | 94 "//content/common:mojo_bindings", |
92 "//cc", | |
93 "//cc/surfaces", | |
94 "//mojo/public/cpp/bindings", | 95 "//mojo/public/cpp/bindings", |
95 "//mojo/public/interfaces/application", | 96 "//mojo/public/interfaces/application", |
96 "//mojo/public/js/bindings", | 97 "//mojo/public/js/bindings", |
97 "//net:http_server", | 98 "//net:http_server", |
| 99 "//third_party/angle:commit_id", |
98 "//third_party/icu", | 100 "//third_party/icu", |
99 "//third_party/leveldatabase", | 101 "//third_party/leveldatabase", |
100 "//third_party/libyuv", | 102 "//third_party/libyuv", |
101 "//ui/resources", | 103 "//ui/resources", |
102 "//ui/surface", | 104 "//ui/surface", |
103 "//webkit:resources", | 105 "//webkit:resources", |
104 "//webkit:strings", | |
105 "//webkit/browser:storage", | 106 "//webkit/browser:storage", |
106 "//webkit/common", | 107 "//webkit/common", |
107 "//webkit/common:storage", | 108 "//webkit/common:storage", |
108 "//third_party/angle:commit_id", | |
109 ] | 109 ] |
110 } | 110 } |
111 | 111 |
112 configs += [ | 112 configs += [ |
113 "//content:content_implementation", | 113 "//content:content_implementation", |
114 "//content:libjingle_stub_config", # TODO(GYP) remove when libjingle is rea
dy. | 114 "//content:libjingle_stub_config", # TODO(GYP) remove when libjingle is rea
dy. |
115 "//content:webrtc_stub_config", # TODO(GYP) remove when webrtc is ready. | 115 "//content:webrtc_stub_config", # TODO(GYP) remove when webrtc is ready. |
116 ] | 116 ] |
117 | 117 |
118 if (toolkit_views) { | 118 if (toolkit_views) { |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 sources -= [ | 402 sources -= [ |
403 "geolocation/empty_wifi_data_provider.cc", | 403 "geolocation/empty_wifi_data_provider.cc", |
404 ] | 404 ] |
405 deps += [ "//dbus" ] | 405 deps += [ "//dbus" ] |
406 } else { | 406 } else { |
407 # This will already have gotten removed for all non-Linux cases. | 407 # This will already have gotten removed for all non-Linux cases. |
408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
409 } | 409 } |
410 } | 410 } |
411 } | 411 } |
OLD | NEW |