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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 sources -= [ "power_save_blocker_ozone.cc" ] | 286 sources -= [ "power_save_blocker_ozone.cc" ] |
287 } | 287 } |
288 if (is_chromeos || !use_x11) { | 288 if (is_chromeos || !use_x11) { |
289 sources -= [ "power_save_blocker_x11.cc" ] | 289 sources -= [ "power_save_blocker_x11.cc" ] |
290 } | 290 } |
291 | 291 |
292 # Dealing with *wifi_data_provider_*.cc is also a bit complicated given | 292 # Dealing with *wifi_data_provider_*.cc is also a bit complicated given |
293 # android, chromeos, linux and use_dbus. | 293 # android, chromeos, linux and use_dbus. |
294 if (is_android) { | 294 if (is_android) { |
295 sources -= [ "geolocation/wifi_data_provider_common.cc" ] | 295 sources -= [ "geolocation/wifi_data_provider_common.cc" ] |
296 deps += [ "//webkit/common/gpu" ] | |
297 } | 296 } |
298 if (is_chromeos || (is_linux && !use_dbus)) { | 297 if (is_chromeos || (is_linux && !use_dbus)) { |
299 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 298 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
300 } | 299 } |
301 if (is_linux && use_dbus) { | 300 if (is_linux && use_dbus) { |
302 sources -= [ "geolocation/empty_wifi_data_provider.cc" ] | 301 sources -= [ "geolocation/empty_wifi_data_provider.cc" ] |
303 } | 302 } |
304 | 303 |
305 if (use_pango) { | 304 if (use_pango) { |
306 configs += [ "//build/config/linux:pangocairo" ] | 305 configs += [ "//build/config/linux:pangocairo" ] |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 } | 458 } |
460 | 459 |
461 if (is_linux && use_openssl) { | 460 if (is_linux && use_openssl) { |
462 deps += [ "//third_party/boringssl" ] | 461 deps += [ "//third_party/boringssl" ] |
463 } | 462 } |
464 | 463 |
465 if (enable_media_mojo_renderer) { | 464 if (enable_media_mojo_renderer) { |
466 deps += [ "//media/mojo/services:renderer_service" ] | 465 deps += [ "//media/mojo/services:renderer_service" ] |
467 } | 466 } |
468 } | 467 } |
OLD | NEW |