Chromium Code Reviews| 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("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 668 sources = [ | 668 sources = [ |
| 669 "../common/gpu/client/gl_helper_unittest.cc", | 669 "../common/gpu/client/gl_helper_unittest.cc", |
| 670 "../common/gpu/client/gpu_in_process_context_tests.cc", | 670 "../common/gpu/client/gpu_in_process_context_tests.cc", |
| 671 ] | 671 ] |
| 672 | 672 |
| 673 deps = [ | 673 deps = [ |
| 674 ":test_support", | 674 ":test_support", |
| 675 "//base/allocator", | 675 "//base/allocator", |
| 676 "//base/test:test_support", | 676 "//base/test:test_support", |
| 677 "//content/public/common", | 677 "//content/public/common", |
| 678 "//gpu/blink", | |
|
Dirk Pranke
2015/04/29 22:29:26
These seem to be needed in the release component b
Dirk Pranke
2015/04/29 23:15:43
Indeed, it looks like these are broken independent
| |
| 678 "//gpu/command_buffer/common", | 679 "//gpu/command_buffer/common", |
| 679 "//testing/gtest", | 680 "//testing/gtest", |
| 680 "//third_party/WebKit/public:blink", | 681 "//third_party/WebKit/public:blink", |
| 681 "//ui/base", | 682 "//ui/base", |
| 682 "//ui/gfx", | 683 "//ui/gfx", |
| 683 "//ui/gfx:test_support", | 684 "//ui/gfx:test_support", |
| 684 "//ui/gfx/geometry", | 685 "//ui/gfx/geometry", |
| 685 "//ui/gl", | 686 "//ui/gl", |
| 686 "//v8", | 687 "//v8", |
| 687 ] | 688 ] |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 699 test("content_gl_benchmark") { | 700 test("content_gl_benchmark") { |
| 700 sources = [ | 701 sources = [ |
| 701 "../common/gpu/client/gl_helper_benchmark.cc", | 702 "../common/gpu/client/gl_helper_benchmark.cc", |
| 702 ] | 703 ] |
| 703 | 704 |
| 704 deps = [ | 705 deps = [ |
| 705 ":test_support", | 706 ":test_support", |
| 706 "//base/allocator", | 707 "//base/allocator", |
| 707 "//base/test:test_support", | 708 "//base/test:test_support", |
| 708 "//content/public/common", | 709 "//content/public/common", |
| 710 "//gpu/blink", | |
| 709 "//testing/gtest", | 711 "//testing/gtest", |
| 710 "//third_party/WebKit/public:blink", | 712 "//third_party/WebKit/public:blink", |
| 711 "//ui/base", | 713 "//ui/base", |
| 712 "//ui/gfx", | 714 "//ui/gfx", |
| 713 "//ui/gfx/geometry", | 715 "//ui/gfx/geometry", |
| 714 "//ui/gl", | 716 "//ui/gl", |
| 715 ] | 717 ] |
| 716 } | 718 } |
| 717 } | 719 } |
| OLD | NEW |