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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 libs += [ "jnigraphics" ] | 367 libs += [ "jnigraphics" ] |
368 } | 368 } |
369 | 369 |
370 if (is_mac) { | 370 if (is_mac) { |
371 sources -= [ | 371 sources -= [ |
372 "device_sensors/data_fetcher_shared_memory_default.cc", | 372 "device_sensors/data_fetcher_shared_memory_default.cc", |
373 "geolocation/empty_wifi_data_provider.cc", | 373 "geolocation/empty_wifi_data_provider.cc", |
374 "geolocation/empty_wifi_data_provider.h", | 374 "geolocation/empty_wifi_data_provider.h", |
375 ] | 375 ] |
376 deps += [ | 376 deps += [ |
| 377 "//media", |
377 "//sandbox/mac:sandbox", | 378 "//sandbox/mac:sandbox", |
378 "//third_party/mozilla", | 379 "//third_party/mozilla", |
379 "//third_party/sudden_motion_sensor", | 380 "//third_party/sudden_motion_sensor", |
380 "//ui/accelerated_widget_mac", | 381 "//ui/accelerated_widget_mac", |
381 ] | 382 ] |
| 383 libs += [ |
| 384 "Carbon.framework", |
| 385 "QuartzCore.framework", |
| 386 "IOSurface.framework", |
| 387 ] |
382 } | 388 } |
383 | 389 |
384 if (is_chromeos) { | 390 if (is_chromeos) { |
385 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 391 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
386 deps += [ | 392 deps += [ |
387 "//chromeos", | 393 "//chromeos", |
388 "//chromeos:power_manager_proto", | 394 "//chromeos:power_manager_proto", |
389 ] | 395 ] |
390 } | 396 } |
391 | 397 |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 if (!is_component_build) { | 538 if (!is_component_build) { |
533 public_deps = [ | 539 public_deps = [ |
534 ":browser", | 540 ":browser", |
535 ] | 541 ] |
536 } else { | 542 } else { |
537 public_deps = [ | 543 public_deps = [ |
538 "//third_party/leveldatabase", | 544 "//third_party/leveldatabase", |
539 ] | 545 ] |
540 } | 546 } |
541 } | 547 } |
OLD | NEW |