| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//cc", | 91 "//cc", |
| 92 "//cc/surfaces", | 92 "//cc/surfaces", |
| 93 "//content/app/resources", | 93 "//content/app/resources", |
| 94 "//content/app/strings", | 94 "//content/app/strings", |
| 95 "//content/browser/devtools:resources", | 95 "//content/browser/devtools:resources", |
| 96 "//content/common:mojo_bindings", | 96 "//content/common:mojo_bindings", |
| 97 "//mojo/public/cpp/bindings", | 97 "//mojo/public/cpp/bindings", |
| 98 "//mojo/public/interfaces/application", | 98 "//mojo/public/interfaces/application", |
| 99 "//mojo/public/js/bindings", | 99 "//mojo/public/js/bindings", |
| 100 "//net:http_server", | 100 "//net:http_server", |
| 101 "//storage/common", |
| 101 "//third_party/WebKit/public:resources", | 102 "//third_party/WebKit/public:resources", |
| 102 "//third_party/angle:commit_id", | 103 "//third_party/angle:commit_id", |
| 103 "//third_party/icu", | 104 "//third_party/icu", |
| 104 "//third_party/leveldatabase", | 105 "//third_party/leveldatabase", |
| 105 "//third_party/libyuv", | 106 "//third_party/libyuv", |
| 106 "//ui/resources", | 107 "//ui/resources", |
| 107 "//ui/surface", | 108 "//ui/surface", |
| 108 "//webkit/browser:storage", | 109 "//webkit/browser:storage", |
| 109 "//webkit/common", | |
| 110 "//webkit/common:storage_common", | |
| 111 ] | 110 ] |
| 112 } | 111 } |
| 113 | 112 |
| 114 configs += [ | 113 configs += [ |
| 115 "//content:content_implementation", | 114 "//content:content_implementation", |
| 116 | 115 |
| 117 # TODO(GYP) remove this when libjingle_webrtc is working. | 116 # TODO(GYP) remove this when libjingle_webrtc is working. |
| 118 "//third_party/libjingle:jingle_direct_dependent_configs", # TODO(GYP) | 117 "//third_party/libjingle:jingle_direct_dependent_configs", # TODO(GYP) |
| 119 ] | 118 ] |
| 120 | 119 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 deps += [ "//dbus" ] | 405 deps += [ "//dbus" ] |
| 407 } else { | 406 } else { |
| 408 # This will already have gotten removed for all non-Linux cases. | 407 # This will already have gotten removed for all non-Linux cases. |
| 409 sources -= [ | 408 sources -= [ |
| 410 "battery_status/battery_status_manager_linux.cc", | 409 "battery_status/battery_status_manager_linux.cc", |
| 411 "geolocation/wifi_data_provider_linux.cc", | 410 "geolocation/wifi_data_provider_linux.cc", |
| 412 ] | 411 ] |
| 413 } | 412 } |
| 414 } | 413 } |
| 415 } | 414 } |
| OLD | NEW |