| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 65 "//components/mus/public/cpp/surfaces", |
| 66 "//components/mus/public/interfaces", | 66 "//components/mus/public/interfaces", |
| 67 "//mojo/common", | 67 "//mojo/common", |
| 68 "//mojo/public/c/system:for_component", | |
| 69 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
| 70 "//services/catalog/public/cpp", | 69 "//services/catalog/public/cpp", |
| 71 "//services/shell/public/cpp", | 70 "//services/shell/public/cpp", |
| 72 "//services/shell/public/interfaces", | 71 "//services/shell/public/interfaces", |
| 73 "//skia", | 72 "//skia", |
| 74 "//third_party/icu", | 73 "//third_party/icu", |
| 75 "//ui/aura", | 74 "//ui/aura", |
| 76 "//ui/compositor", | 75 "//ui/compositor", |
| 77 "//ui/display", | 76 "//ui/display", |
| 78 "//ui/display/mojo", | 77 "//ui/display/mojo", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "//ui/views/resources", | 113 "//ui/views/resources", |
| 115 ] | 114 ] |
| 116 } | 115 } |
| 117 | 116 |
| 118 group("for_mojo_application") { | 117 group("for_mojo_application") { |
| 119 public_deps = [ | 118 public_deps = [ |
| 120 ":mus", | 119 ":mus", |
| 121 ] | 120 ] |
| 122 } | 121 } |
| 123 | 122 |
| 124 group("for_shared_library") { | |
| 125 public_deps = [ | |
| 126 ":mus", | |
| 127 ] | |
| 128 } | |
| 129 | |
| 130 source_set("test_support") { | 123 source_set("test_support") { |
| 131 testonly = true | 124 testonly = true |
| 132 | 125 |
| 133 sources = [ | 126 sources = [ |
| 134 "../test/native_widget_factory_mus.cc", | 127 "../test/native_widget_factory_mus.cc", |
| 135 "views_mus_test_suite.cc", | 128 "views_mus_test_suite.cc", |
| 136 "views_mus_test_suite.h", | 129 "views_mus_test_suite.h", |
| 137 ] | 130 ] |
| 138 | 131 |
| 139 deps = [ | 132 deps = [ |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 type = "exe" | 304 type = "exe" |
| 312 application_name = "views_mus_unittests" | 305 application_name = "views_mus_unittests" |
| 313 source = "unittests_manifest.json" | 306 source = "unittests_manifest.json" |
| 314 } | 307 } |
| 315 | 308 |
| 316 mojo_application_manifest("interactive_ui_tests_manifest") { | 309 mojo_application_manifest("interactive_ui_tests_manifest") { |
| 317 type = "exe" | 310 type = "exe" |
| 318 application_name = "views_mus_interactive_ui_tests" | 311 application_name = "views_mus_interactive_ui_tests" |
| 319 source = "interactive_ui_tests_manifest.json" | 312 source = "interactive_ui_tests_manifest.json" |
| 320 } | 313 } |
| 321 | |
| 322 group("for_component") { | |
| 323 public_deps = [ | |
| 324 ":mus", | |
| 325 ] | |
| 326 } | |
| OLD | NEW |