| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 deps = [ | 55 deps = [ |
| 56 "//base", | 56 "//base", |
| 57 "//base:i18n", | 57 "//base:i18n", |
| 58 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 59 "//cc", | 59 "//cc", |
| 60 "//cc/surfaces", | 60 "//cc/surfaces", |
| 61 "//components/bitmap_uploader", | 61 "//components/bitmap_uploader", |
| 62 "//components/mus/common:mus_common", | 62 "//components/mus/common:mus_common", |
| 63 "//components/mus/gles2:lib", | 63 "//components/mus/gles2:lib", |
| 64 "//components/mus/public/cpp", | 64 "//components/mus/public/cpp", |
| 65 "//components/mus/public/cpp/surfaces", | |
| 66 "//components/mus/public/interfaces", | 65 "//components/mus/public/interfaces", |
| 67 "//mojo/common", | 66 "//mojo/common", |
| 68 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
| 69 "//services/catalog/public/cpp", | 68 "//services/catalog/public/cpp", |
| 70 "//services/shell/public/cpp", | 69 "//services/shell/public/cpp", |
| 71 "//services/shell/public/interfaces", | 70 "//services/shell/public/interfaces", |
| 72 "//skia", | 71 "//skia", |
| 73 "//third_party/icu", | 72 "//third_party/icu", |
| 74 "//ui/aura", | 73 "//ui/aura", |
| 75 "//ui/compositor", | 74 "//ui/compositor", |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 type = "exe" | 302 type = "exe" |
| 304 application_name = "views_mus_unittests" | 303 application_name = "views_mus_unittests" |
| 305 source = "unittests_manifest.json" | 304 source = "unittests_manifest.json" |
| 306 } | 305 } |
| 307 | 306 |
| 308 mojo_application_manifest("interactive_ui_tests_manifest") { | 307 mojo_application_manifest("interactive_ui_tests_manifest") { |
| 309 type = "exe" | 308 type = "exe" |
| 310 application_name = "views_mus_interactive_ui_tests" | 309 application_name = "views_mus_interactive_ui_tests" |
| 311 source = "interactive_ui_tests_manifest.json" | 310 source = "interactive_ui_tests_manifest.json" |
| 312 } | 311 } |
| OLD | NEW |