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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 "//ui/accelerated_widget_mac", | 410 "//ui/accelerated_widget_mac", |
411 ] | 411 ] |
412 libs += [ | 412 libs += [ |
413 "bsm", | 413 "bsm", |
414 "QTKit.framework", | 414 "QTKit.framework", |
415 ] | 415 ] |
416 } | 416 } |
417 | 417 |
418 if (is_chromeos) { | 418 if (is_chromeos) { |
419 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 419 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
420 sources += [ | |
421 "gpu/gpu_arc_video_service_host.cc", | |
422 "gpu/gpu_arc_video_service_host.h", | |
423 ] | |
424 deps += [ | 420 deps += [ |
425 "//chromeos", | 421 "//chromeos", |
426 "//chromeos:power_manager_proto", | 422 "//chromeos:power_manager_proto", |
427 ] | 423 ] |
428 } | 424 } |
429 | 425 |
430 if (use_aura) { | 426 if (use_aura) { |
431 deps += [ | 427 deps += [ |
432 "//components/bitmap_uploader", | 428 "//components/bitmap_uploader", |
433 "//components/mus/public/cpp", | 429 "//components/mus/public/cpp", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 | 548 |
553 if (enable_webvr && is_android) { | 549 if (enable_webvr && is_android) { |
554 sources += [ | 550 sources += [ |
555 "vr/android/cardboard/cardboard_vr_device.cc", | 551 "vr/android/cardboard/cardboard_vr_device.cc", |
556 "vr/android/cardboard/cardboard_vr_device.h", | 552 "vr/android/cardboard/cardboard_vr_device.h", |
557 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 553 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
558 "vr/android/cardboard/cardboard_vr_device_provider.h", | 554 "vr/android/cardboard/cardboard_vr_device_provider.h", |
559 ] | 555 ] |
560 } | 556 } |
561 } | 557 } |
OLD | NEW |