Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: content/browser/BUILD.gn

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed dcheng's comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 "//ui/accelerated_widget_mac", 409 "//ui/accelerated_widget_mac",
410 ] 410 ]
411 libs += [ 411 libs += [
412 "bsm", 412 "bsm",
413 "QTKit.framework", 413 "QTKit.framework",
414 ] 414 ]
415 } 415 }
416 416
417 if (is_chromeos) { 417 if (is_chromeos) {
418 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] 418 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ]
419 sources += [
420 "gpu/gpu_arc_video_service_host.cc",
421 "gpu/gpu_arc_video_service_host.h",
422 ]
419 deps += [ 423 deps += [
420 "//chromeos", 424 "//chromeos",
421 "//chromeos:power_manager_proto", 425 "//chromeos:power_manager_proto",
422 ] 426 ]
423 } 427 }
424 428
425 if (use_aura) { 429 if (use_aura) {
426 deps += [ 430 deps += [
427 "//components/bitmap_uploader", 431 "//components/bitmap_uploader",
428 "//components/mus/public/cpp", 432 "//components/mus/public/cpp",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 551
548 if (enable_webvr && is_android) { 552 if (enable_webvr && is_android) {
549 sources += [ 553 sources += [
550 "vr/android/cardboard/cardboard_vr_device.cc", 554 "vr/android/cardboard/cardboard_vr_device.cc",
551 "vr/android/cardboard/cardboard_vr_device.h", 555 "vr/android/cardboard/cardboard_vr_device.h",
552 "vr/android/cardboard/cardboard_vr_device_provider.cc", 556 "vr/android/cardboard/cardboard_vr_device_provider.cc",
553 "vr/android/cardboard/cardboard_vr_device_provider.h", 557 "vr/android/cardboard/cardboard_vr_device_provider.h",
554 ] 558 ]
555 } 559 }
556 } 560 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698