| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//content/browser/devtools:resources", | 90 "//content/browser/devtools:resources", |
| 91 "//content/common:mojo_bindings", | 91 "//content/common:mojo_bindings", |
| 92 "//cc", | 92 "//cc", |
| 93 "//cc:cc_surfaces", | 93 "//cc:cc_surfaces", |
| 94 "//mojo/public/cpp/bindings", | 94 "//mojo/public/cpp/bindings", |
| 95 "//mojo/public/interfaces/interface_provider", | 95 "//mojo/public/interfaces/service_provider", |
| 96 "//mojo/public/js/bindings", | 96 "//mojo/public/js/bindings", |
| 97 "//net:http_server", | 97 "//net:http_server", |
| 98 "//third_party/icu", | 98 "//third_party/icu", |
| 99 "//third_party/leveldatabase", | 99 "//third_party/leveldatabase", |
| 100 "//third_party/libyuv", | 100 "//third_party/libyuv", |
| 101 "//ui/resources", | 101 "//ui/resources", |
| 102 "//ui/surface", | 102 "//ui/surface", |
| 103 "//ui/webui/resources", | 103 "//ui/webui/resources", |
| 104 "//webkit:resources", | 104 "//webkit:resources", |
| 105 "//webkit:strings", | 105 "//webkit:strings", |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 sources -= [ | 366 sources -= [ |
| 367 "geolocation/empty_wifi_data_provider.cc", | 367 "geolocation/empty_wifi_data_provider.cc", |
| 368 ] | 368 ] |
| 369 deps += [ "//dbus" ] | 369 deps += [ "//dbus" ] |
| 370 } else { | 370 } else { |
| 371 # This will already have gotten removed for all non-Linux cases. | 371 # This will already have gotten removed for all non-Linux cases. |
| 372 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 372 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
| 373 } | 373 } |
| 374 } | 374 } |
| 375 } | 375 } |
| OLD | NEW |