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