| 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 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ":test_support", | 143 ":test_support", |
| 144 "//base", | 144 "//base", |
| 145 "//base/test:test_config", | 145 "//base/test:test_config", |
| 146 "//components/mus/common", | 146 "//components/mus/common", |
| 147 "//components/mus/public/cpp", | 147 "//components/mus/public/cpp", |
| 148 "//components/mus/public/interfaces", | 148 "//components/mus/public/interfaces", |
| 149 "//components/mus/surfaces", | 149 "//components/mus/surfaces", |
| 150 "//mojo/converters/geometry", | 150 "//mojo/converters/geometry", |
| 151 "//mojo/converters/input_events", | 151 "//mojo/converters/input_events", |
| 152 "//mojo/converters/transform", | 152 "//mojo/converters/transform", |
| 153 "//mojo/edk/test:run_all_unittests", |
| 153 "//mojo/environment:chromium", | 154 "//mojo/environment:chromium", |
| 154 "//mojo/gles2", | 155 "//mojo/gles2", |
| 155 "//mojo/platform_handle", | 156 "//mojo/platform_handle", |
| 156 "//mojo/public/cpp/bindings:bindings", | 157 "//mojo/public/cpp/bindings:bindings", |
| 157 "//mojo/shell/public/interfaces", | 158 "//mojo/shell/public/interfaces", |
| 158 "//testing/gtest", | 159 "//testing/gtest", |
| 159 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
| 160 "//ui/events", | 160 "//ui/events", |
| 161 "//ui/gfx", | 161 "//ui/gfx", |
| 162 "//ui/gfx:test_support", | 162 "//ui/gfx:test_support", |
| 163 "//ui/gfx/geometry", | 163 "//ui/gfx/geometry", |
| 164 "//ui/mojo/geometry:interfaces", | 164 "//ui/mojo/geometry:interfaces", |
| 165 ] | 165 ] |
| 166 | 166 |
| 167 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 167 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 168 deps += [ "//third_party/mesa:osmesa" ] | 168 deps += [ "//third_party/mesa:osmesa" ] |
| 169 } | 169 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 192 "//ui/gfx:test_support", | 192 "//ui/gfx:test_support", |
| 193 "//ui/gfx/geometry", | 193 "//ui/gfx/geometry", |
| 194 "//ui/mojo/geometry:interfaces", | 194 "//ui/mojo/geometry:interfaces", |
| 195 "//ui/mojo/geometry:util", | 195 "//ui/mojo/geometry:util", |
| 196 ] | 196 ] |
| 197 | 197 |
| 198 data_deps = [ | 198 data_deps = [ |
| 199 ":lib", | 199 ":lib", |
| 200 ] | 200 ] |
| 201 } | 201 } |
| OLD | NEW |