| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ] | 355 ] |
| 356 libs += [ "jnigraphics" ] | 356 libs += [ "jnigraphics" ] |
| 357 } | 357 } |
| 358 | 358 |
| 359 if (is_mac) { | 359 if (is_mac) { |
| 360 sources -= [ | 360 sources -= [ |
| 361 "device_sensors/data_fetcher_shared_memory_default.cc", | 361 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 362 "geolocation/empty_wifi_data_provider.cc", | 362 "geolocation/empty_wifi_data_provider.cc", |
| 363 "geolocation/empty_wifi_data_provider.h", | 363 "geolocation/empty_wifi_data_provider.h", |
| 364 ] | 364 ] |
| 365 deps += [ "//ui/accelerated_widget_mac" ] | 365 deps += [ |
| 366 libs += [ "bsm" ] | 366 "//sandbox/mac:sandbox", |
| 367 "//third_party/mozilla", |
| 368 "//third_party/sudden_motion_sensor", |
| 369 "//ui/accelerated_widget_mac", |
| 370 ] |
| 371 libs += [ |
| 372 "bsm", |
| 373 "QTKit.framework", |
| 374 ] |
| 367 } | 375 } |
| 368 | 376 |
| 369 if (is_chromeos) { | 377 if (is_chromeos) { |
| 370 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 378 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
| 371 deps += [ | 379 deps += [ |
| 372 "//chromeos", | 380 "//chromeos", |
| 373 "//chromeos:power_manager_proto", | 381 "//chromeos:power_manager_proto", |
| 374 ] | 382 ] |
| 375 } | 383 } |
| 376 | 384 |
| 377 if (use_aura) { | 385 if (use_aura) { |
| 378 deps += [ | 386 deps += [ |
| 379 "//ui/aura", | 387 "//ui/aura", |
| 380 "//ui/aura_extra", | 388 "//ui/aura_extra", |
| 381 "//ui/strings", | 389 "//ui/strings", |
| 382 "//ui/wm", | 390 "//ui/wm", |
| 383 ] | 391 ] |
| 384 } else { # Not aura. | 392 } else { # Not aura. |
| 385 sources -= [ | 393 sources -= [ |
| 394 "renderer_host/compositor_resize_lock_aura.cc", |
| 395 "renderer_host/compositor_resize_lock_aura.h", |
| 386 "renderer_host/input/synthetic_gesture_target_aura.cc", | 396 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 387 "renderer_host/input/synthetic_gesture_target_aura.h", | 397 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 388 "renderer_host/native_web_keyboard_event_aura.cc", | 398 "renderer_host/native_web_keyboard_event_aura.cc", |
| 389 "renderer_host/render_widget_host_view_aura.cc", | 399 "renderer_host/render_widget_host_view_aura.cc", |
| 390 "renderer_host/render_widget_host_view_aura.h", | 400 "renderer_host/render_widget_host_view_aura.h", |
| 391 "renderer_host/ui_events_helper.cc", | 401 "renderer_host/ui_events_helper.cc", |
| 392 "renderer_host/ui_events_helper.h", | 402 "renderer_host/ui_events_helper.h", |
| 393 "renderer_host/web_input_event_aura.cc", | 403 "renderer_host/web_input_event_aura.cc", |
| 394 "renderer_host/web_input_event_aura.h", | 404 "renderer_host/web_input_event_aura.h", |
| 395 "web_contents/aura/gesture_nav_simple.cc", | 405 "web_contents/aura/gesture_nav_simple.cc", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 } | 463 } |
| 454 | 464 |
| 455 if (is_linux && use_openssl) { | 465 if (is_linux && use_openssl) { |
| 456 deps += [ "//third_party/boringssl" ] | 466 deps += [ "//third_party/boringssl" ] |
| 457 } | 467 } |
| 458 | 468 |
| 459 if (enable_media_mojo_renderer) { | 469 if (enable_media_mojo_renderer) { |
| 460 deps += [ "//media/mojo/services:renderer_service" ] | 470 deps += [ "//media/mojo/services:renderer_service" ] |
| 461 } | 471 } |
| 462 } | 472 } |
| OLD | NEW |