| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 deps = [ | 51 deps = [ |
| 52 "//base", | 52 "//base", |
| 53 "//base:i18n", | 53 "//base:i18n", |
| 54 "//base/third_party/dynamic_annotations", | 54 "//base/third_party/dynamic_annotations", |
| 55 "//cc", | 55 "//cc", |
| 56 "//cc/surfaces", | 56 "//cc/surfaces", |
| 57 "//components/bitmap_uploader", | 57 "//components/bitmap_uploader", |
| 58 "//components/mus/gles2:lib", | 58 "//components/mus/gles2:lib", |
| 59 "//components/mus/public/cpp", | 59 "//components/mus/public/cpp", |
| 60 "//components/mus/public/interfaces", | 60 "//components/mus/public/interfaces", |
| 61 "//mojo/converters/geometry", | |
| 62 "//mojo/converters/ime", | 61 "//mojo/converters/ime", |
| 63 "//mojo/converters/input_events", | 62 "//mojo/converters/input_events", |
| 64 "//mojo/converters/surfaces", | 63 "//mojo/converters/surfaces", |
| 65 "//mojo/public/c/system:for_component", | 64 "//mojo/public/c/system:for_component", |
| 66 "//mojo/public/cpp/bindings", | 65 "//mojo/public/cpp/bindings", |
| 67 "//services/catalog/public/cpp", | 66 "//services/catalog/public/cpp", |
| 68 "//services/shell/public/cpp", | 67 "//services/shell/public/cpp", |
| 69 "//services/shell/public/interfaces", | 68 "//services/shell/public/interfaces", |
| 70 "//skia", | 69 "//skia", |
| 71 "//third_party/icu", | 70 "//third_party/icu", |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 type = "exe" | 292 type = "exe" |
| 294 application_name = "views_mus_interactive_ui_tests" | 293 application_name = "views_mus_interactive_ui_tests" |
| 295 source = "interactive_ui_tests_manifest.json" | 294 source = "interactive_ui_tests_manifest.json" |
| 296 } | 295 } |
| 297 | 296 |
| 298 group("for_component") { | 297 group("for_component") { |
| 299 public_deps = [ | 298 public_deps = [ |
| 300 ":mus", | 299 ":mus", |
| 301 ] | 300 ] |
| 302 } | 301 } |
| OLD | NEW |