| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 libs += [ "jnigraphics" ] | 374 libs += [ "jnigraphics" ] |
| 375 } | 375 } |
| 376 | 376 |
| 377 if (is_mac) { | 377 if (is_mac) { |
| 378 sources -= [ | 378 sources -= [ |
| 379 "device_sensors/data_fetcher_shared_memory_default.cc", | 379 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 380 "geolocation/empty_wifi_data_provider.cc", | 380 "geolocation/empty_wifi_data_provider.cc", |
| 381 "geolocation/empty_wifi_data_provider.h", | 381 "geolocation/empty_wifi_data_provider.h", |
| 382 ] | 382 ] |
| 383 deps += [ | 383 deps += [ |
| 384 "//media", |
| 384 "//sandbox/mac:sandbox", | 385 "//sandbox/mac:sandbox", |
| 385 "//third_party/mozilla", | 386 "//third_party/mozilla", |
| 386 "//third_party/sudden_motion_sensor", | 387 "//third_party/sudden_motion_sensor", |
| 387 "//ui/accelerated_widget_mac", | 388 "//ui/accelerated_widget_mac", |
| 388 ] | 389 ] |
| 390 libs += [ |
| 391 "Carbon.framework", |
| 392 "QuartzCore.framework", |
| 393 "IOSurface.framework", |
| 394 ] |
| 389 } | 395 } |
| 390 | 396 |
| 391 if (is_chromeos) { | 397 if (is_chromeos) { |
| 392 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 398 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
| 393 deps += [ | 399 deps += [ |
| 394 "//chromeos", | 400 "//chromeos", |
| 395 "//chromeos:power_manager_proto", | 401 "//chromeos:power_manager_proto", |
| 396 ] | 402 ] |
| 397 } | 403 } |
| 398 | 404 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 | 541 |
| 536 # See comment at the top of //content/BUILD.gn for how this works. | 542 # See comment at the top of //content/BUILD.gn for how this works. |
| 537 group("for_content_tests") { | 543 group("for_content_tests") { |
| 538 visibility = [ "//content/test/*" ] | 544 visibility = [ "//content/test/*" ] |
| 539 if (!is_component_build) { | 545 if (!is_component_build) { |
| 540 public_deps = [ | 546 public_deps = [ |
| 541 ":browser", | 547 ":browser", |
| 542 ] | 548 ] |
| 543 } | 549 } |
| 544 } | 550 } |
| OLD | NEW |