| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 component("mus_common") { | 9 component("mus_common") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ] | 75 ] |
| 76 public_deps = [ | 76 public_deps = [ |
| 77 ":mus_common", | 77 ":mus_common", |
| 78 ] | 78 ] |
| 79 deps = [ | 79 deps = [ |
| 80 ":run_all_shelltests", | 80 ":run_all_shelltests", |
| 81 "//base", | 81 "//base", |
| 82 "//base/test:test_config", | 82 "//base/test:test_config", |
| 83 "//components/mus/public/interfaces", | 83 "//components/mus/public/interfaces", |
| 84 "//ipc:ipc", | 84 "//ipc:ipc", |
| 85 "//mojo/edk/test:test_support", | |
| 86 "//testing/gtest", | 85 "//testing/gtest", |
| 87 "//ui/gfx:test_support", | 86 "//ui/gfx:test_support", |
| 88 "//ui/gfx/ipc", | 87 "//ui/gfx/ipc", |
| 89 ] | 88 ] |
| 90 } | 89 } |
| 91 | 90 |
| 92 mojo_application_manifest("mus_common_unittests_app_manifest") { | 91 mojo_application_manifest("mus_common_unittests_app_manifest") { |
| 93 application_name = "mus_common_unittests_app" | 92 application_name = "mus_common_unittests_app" |
| 94 source = "mus_common_unittests_app_manifest.json" | 93 source = "mus_common_unittests_app_manifest.json" |
| 95 } | 94 } |
| OLD | NEW |