| 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 | 12 |
| 13 group("view_manager") { | 13 group("view_manager") { |
| 14 deps = [ | 14 deps = [ |
| 15 ":jni_headers", | 15 ":jni_headers", |
| 16 ":lib", | 16 ":lib", |
| 17 ":loader", | 17 ":loader", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 "//base/test:test_config", | 222 "//base/test:test_config", |
| 223 "//components/view_manager/public/cpp", | 223 "//components/view_manager/public/cpp", |
| 224 "//components/view_manager/public/interfaces", | 224 "//components/view_manager/public/interfaces", |
| 225 "//mojo/application/public/cpp:test_support", | 225 "//mojo/application/public/cpp:test_support", |
| 226 "//ui/mojo/geometry:interfaces", | 226 "//ui/mojo/geometry:interfaces", |
| 227 "//ui/mojo/geometry:util", | 227 "//ui/mojo/geometry:util", |
| 228 ] | 228 ] |
| 229 | 229 |
| 230 data_deps = [ ":view_manager" ] | 230 data_deps = [ ":view_manager" ] |
| 231 } | 231 } |
| OLD | NEW |