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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("gpu") { | 7 source_set("gpu") { |
8 sources = [ | 8 sources = [ |
9 "gl_context.cc", | 9 "gl_context.cc", |
10 "gl_context.h", | 10 "gl_context.h", |
(...skipping 21 matching lines...) Expand all Loading... |
32 "//gpu/command_buffer/common", | 32 "//gpu/command_buffer/common", |
33 "//mojo/environment:chromium", | 33 "//mojo/environment:chromium", |
34 "//mojo/public/c/gpu:gpu_onscreen", | 34 "//mojo/public/c/gpu:gpu_onscreen", |
35 "//mojo/public/c/system", | 35 "//mojo/public/c/system", |
36 "//mojo/public/cpp/application", | 36 "//mojo/public/cpp/application", |
37 "//mojo/public/cpp/bindings", | 37 "//mojo/public/cpp/bindings", |
38 "//mojo/public/cpp/environment", | 38 "//mojo/public/cpp/environment", |
39 "//mojo/public/cpp/system", | 39 "//mojo/public/cpp/system", |
40 "//mojo/public/cpp/utility", | 40 "//mojo/public/cpp/utility", |
41 "//mojo/public/interfaces/application", | 41 "//mojo/public/interfaces/application", |
42 "//mojo/services/geometry/public/cpp", | 42 "//mojo/services/geometry/cpp", |
43 "//mojo/services/geometry/public/interfaces", | 43 "//mojo/services/geometry/interfaces", |
44 "//mojo/services/gpu/public/interfaces", | 44 "//mojo/services/gpu/interfaces", |
45 "//mojo/services/surfaces/public/cpp", | 45 "//mojo/services/surfaces/public/cpp", |
46 "//mojo/services/surfaces/public/interfaces", | 46 "//mojo/services/surfaces/public/interfaces", |
47 "//mojo/services/surfaces/public/interfaces:surface_id", | 47 "//mojo/services/surfaces/public/interfaces:surface_id", |
48 ] | 48 ] |
49 } | 49 } |
50 | 50 |
51 mojo_native_application("apptests") { | 51 mojo_native_application("apptests") { |
52 output_name = "texture_apptests" | 52 output_name = "texture_apptests" |
53 | 53 |
54 testonly = true | 54 testonly = true |
55 | 55 |
56 sources = [ | 56 sources = [ |
57 "texture_cache_unittest.cc", | 57 "texture_cache_unittest.cc", |
58 "texture_uploader_unittest.cc", | 58 "texture_uploader_unittest.cc", |
59 ] | 59 ] |
60 | 60 |
61 deps = [ | 61 deps = [ |
62 ":gpu", | 62 ":gpu", |
63 "//base", | 63 "//base", |
64 "//mojo/application", | 64 "//mojo/application", |
65 "//mojo/application:test_support", | 65 "//mojo/application:test_support", |
66 "//mojo/public/cpp/bindings:callback", | 66 "//mojo/public/cpp/bindings:callback", |
67 "//mojo/services/geometry/public/interfaces", | 67 "//mojo/services/geometry/interfaces", |
68 "//mojo/services/surfaces/public/interfaces:surface_id", | 68 "//mojo/services/surfaces/public/interfaces:surface_id", |
69 "//testing/gtest", | 69 "//testing/gtest", |
70 ] | 70 ] |
71 } | 71 } |
OLD | NEW |