| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "//cc:cc_surfaces", | 93 "//cc:cc_surfaces", |
| 94 "//mojo/public/cpp/bindings", | 94 "//mojo/public/cpp/bindings", |
| 95 "//mojo/public/interfaces/service_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", | |
| 104 "//webkit:resources", | 103 "//webkit:resources", |
| 105 "//webkit:strings", | 104 "//webkit:strings", |
| 106 "//webkit/browser:storage", | 105 "//webkit/browser:storage", |
| 107 "//webkit/common", | 106 "//webkit/common", |
| 108 "//webkit/common:storage", | 107 "//webkit/common:storage", |
| 109 "//third_party/angle:commit_id", | 108 "//third_party/angle:commit_id", |
| 110 ] | 109 ] |
| 111 } | 110 } |
| 112 | 111 |
| 113 configs += [ | 112 configs += [ |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 sources -= [ | 389 sources -= [ |
| 391 "geolocation/empty_wifi_data_provider.cc", | 390 "geolocation/empty_wifi_data_provider.cc", |
| 392 ] | 391 ] |
| 393 deps += [ "//dbus" ] | 392 deps += [ "//dbus" ] |
| 394 } else { | 393 } else { |
| 395 # This will already have gotten removed for all non-Linux cases. | 394 # This will already have gotten removed for all non-Linux cases. |
| 396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 395 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
| 397 } | 396 } |
| 398 } | 397 } |
| 399 } | 398 } |
| OLD | NEW |