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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1039 "//testing/gtest", | 1039 "//testing/gtest", |
1040 "//testing/perf", | 1040 "//testing/perf", |
1041 "//ui/gfx", | 1041 "//ui/gfx", |
1042 "//ui/gfx/geometry", | 1042 "//ui/gfx/geometry", |
1043 "//ui/gl", | 1043 "//ui/gl", |
1044 "//ui/gl:test_support", | 1044 "//ui/gl:test_support", |
1045 ] | 1045 ] |
1046 | 1046 |
1047 # This target should not require the Chrome executable to run. | 1047 # This target should not require the Chrome executable to run. |
1048 assert_no_deps = [ "//chrome" ] | 1048 assert_no_deps = [ "//chrome" ] |
| 1049 |
| 1050 data = [ |
| 1051 "test/data/", |
| 1052 ] |
1049 } | 1053 } |
OLD | NEW |