| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//base", | 361 "//base", |
| 362 "//media", | 362 "//media", |
| 363 "//media/gpu", | 363 "//media/gpu", |
| 364 "//testing/gtest", | 364 "//testing/gtest", |
| 365 "//ui/base", | 365 "//ui/base", |
| 366 "//ui/gfx", | 366 "//ui/gfx", |
| 367 "//ui/gfx:test_support", | 367 "//ui/gfx:test_support", |
| 368 "//ui/gfx/geometry", | 368 "//ui/gfx/geometry", |
| 369 "//ui/gl", | 369 "//ui/gl", |
| 370 "//ui/gl:test_support", | 370 "//ui/gl:test_support", |
| 371 "//ui/gl/init", |
| 371 ] | 372 ] |
| 372 | 373 |
| 373 configs += [ "//third_party/khronos:khronos_headers" ] | 374 configs += [ "//third_party/khronos:khronos_headers" ] |
| 374 if (is_chromeos && target_cpu != "arm") { | 375 if (is_chromeos && target_cpu != "arm") { |
| 375 configs += [ "//third_party/libva:libva_config" ] | 376 configs += [ "//third_party/libva:libva_config" ] |
| 376 } | 377 } |
| 377 | 378 |
| 378 if (is_android) { | 379 if (is_android) { |
| 379 sources += [ "android_video_decode_accelerator_unittest.cc" ] | 380 sources += [ "android_video_decode_accelerator_unittest.cc" ] |
| 380 deps += [ | 381 deps += [ |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 "video_encode_accelerator_unittest.cc", | 441 "video_encode_accelerator_unittest.cc", |
| 441 ] | 442 ] |
| 442 if (use_x11) { | 443 if (use_x11) { |
| 443 deps += [ "//ui/gfx/x" ] | 444 deps += [ "//ui/gfx/x" ] |
| 444 } | 445 } |
| 445 if (use_ozone) { | 446 if (use_ozone) { |
| 446 deps += [ "//ui/ozone" ] | 447 deps += [ "//ui/ozone" ] |
| 447 } | 448 } |
| 448 } | 449 } |
| 449 } | 450 } |
| OLD | NEW |