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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 if (is_mac) { | 334 if (is_mac) { |
335 sources -= [ | 335 sources -= [ |
336 "device_sensors/data_fetcher_shared_memory_default.cc", | 336 "device_sensors/data_fetcher_shared_memory_default.cc", |
337 "geolocation/empty_wifi_data_provider.cc", | 337 "geolocation/empty_wifi_data_provider.cc", |
338 "geolocation/empty_wifi_data_provider.h", | 338 "geolocation/empty_wifi_data_provider.h", |
339 ] | 339 ] |
340 libs += [ "bsm" ] | 340 libs += [ "bsm" ] |
341 } | 341 } |
342 | 342 |
343 if (is_chromeos) { | 343 if (is_chromeos) { |
| 344 sources -= [ |
| 345 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 346 ] |
344 deps += [ | 347 deps += [ |
345 "//chromeos", | 348 "//chromeos", |
346 "//chromeos:power_manager_proto", | 349 "//chromeos:power_manager_proto", |
347 ] | 350 ] |
348 } | 351 } |
349 | 352 |
350 if (use_aura) { | 353 if (use_aura) { |
351 deps += [ | 354 deps += [ |
352 "//ui/aura", | 355 "//ui/aura", |
353 "//ui/strings", | 356 "//ui/strings", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 | 419 |
417 if (enable_browser_cdms) { | 420 if (enable_browser_cdms) { |
418 sources += [ | 421 sources += [ |
419 "media/cdm/browser_cdm_manager.cc", | 422 "media/cdm/browser_cdm_manager.cc", |
420 "media/cdm/browser_cdm_manager.h", | 423 "media/cdm/browser_cdm_manager.h", |
421 "media/media_web_contents_observer.cc", | 424 "media/media_web_contents_observer.cc", |
422 "media/media_web_contents_observer.h", | 425 "media/media_web_contents_observer.h", |
423 ] | 426 ] |
424 } | 427 } |
425 } | 428 } |
OLD | NEW |