| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 sources = [ | 334 sources = [ |
| 335 "video_accelerator_unittest_helpers.h", | 335 "video_accelerator_unittest_helpers.h", |
| 336 ] | 336 ] |
| 337 | 337 |
| 338 deps = [ | 338 deps = [ |
| 339 ":gpu", | 339 ":gpu", |
| 340 "//base", | 340 "//base", |
| 341 "//media", | 341 "//media", |
| 342 "//testing/gtest", | 342 "//testing/gtest", |
| 343 "//ui/base", | 343 "//ui/base", |
| 344 "//ui/display/manager", |
| 344 "//ui/gfx", | 345 "//ui/gfx", |
| 345 "//ui/gfx:test_support", | 346 "//ui/gfx:test_support", |
| 346 "//ui/gfx/geometry", | 347 "//ui/gfx/geometry", |
| 347 "//ui/gl", | 348 "//ui/gl", |
| 348 "//ui/gl:test_support", | 349 "//ui/gl:test_support", |
| 349 "//ui/gl/init", | 350 "//ui/gl/init", |
| 350 ] | 351 ] |
| 351 | 352 |
| 352 configs += [ | 353 configs += [ |
| 353 "//third_party/khronos:khronos_headers", | 354 "//third_party/khronos:khronos_headers", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 "video_accelerator_unittest_helpers.h", | 476 "video_accelerator_unittest_helpers.h", |
| 476 ] | 477 ] |
| 477 if (use_x11) { | 478 if (use_x11) { |
| 478 deps += [ "//ui/gfx/x" ] | 479 deps += [ "//ui/gfx/x" ] |
| 479 } | 480 } |
| 480 if (use_ozone) { | 481 if (use_ozone) { |
| 481 deps += [ "//ui/ozone" ] | 482 deps += [ "//ui/ozone" ] |
| 482 } | 483 } |
| 483 } | 484 } |
| 484 } | 485 } |
| OLD | NEW |