| 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 15 matching lines...) Expand all Loading... |
| 26 "switches.cc", | 26 "switches.cc", |
| 27 "switches.h", | 27 "switches.h", |
| 28 "transient_window_utils.h", | 28 "transient_window_utils.h", |
| 29 "types.h", | 29 "types.h", |
| 30 "util.h", | 30 "util.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 defines = [ "MUS_COMMON_IMPLEMENTATION" ] | 33 defines = [ "MUS_COMMON_IMPLEMENTATION" ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 "//components/mus/public/interfaces", | |
| 37 "//gpu/command_buffer/client", | 36 "//gpu/command_buffer/client", |
| 38 "//gpu/config", | 37 "//gpu/config", |
| 39 "//gpu/ipc/client", | 38 "//gpu/ipc/client", |
| 40 "//gpu/ipc/common:command_buffer_traits", | 39 "//gpu/ipc/common:command_buffer_traits", |
| 41 "//ipc:ipc", | 40 "//ipc:ipc", |
| 42 "//mojo/public/c/system:for_component", | |
| 43 "//services/shell/public/cpp", | 41 "//services/shell/public/cpp", |
| 44 "//ui/events:events", | 42 "//ui/events:events", |
| 45 "//ui/gfx/ipc/geometry", | 43 "//ui/gfx/ipc/geometry", |
| 46 ] | 44 ] |
| 47 | 45 |
| 48 public_deps = [ | 46 public_deps = [ |
| 47 "//components/mus/public/interfaces", |
| 48 "//mojo/public/cpp/bindings", |
| 49 "//mojo/public/cpp/system", |
| 49 "//ui/base", | 50 "//ui/base", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| 52 | 53 |
| 53 source_set("run_all_shelltests") { | 54 source_set("run_all_shelltests") { |
| 54 testonly = true | 55 testonly = true |
| 55 | 56 |
| 56 sources = [ | 57 sources = [ |
| 57 "run_all_shelltests.cc", | 58 "run_all_shelltests.cc", |
| 58 ] | 59 ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 85 "//testing/gtest", | 86 "//testing/gtest", |
| 86 "//ui/gfx:test_support", | 87 "//ui/gfx:test_support", |
| 87 "//ui/gfx/ipc", | 88 "//ui/gfx/ipc", |
| 88 ] | 89 ] |
| 89 } | 90 } |
| 90 | 91 |
| 91 mojo_application_manifest("mus_common_unittests_app_manifest") { | 92 mojo_application_manifest("mus_common_unittests_app_manifest") { |
| 92 application_name = "mus_common_unittests_app" | 93 application_name = "mus_common_unittests_app" |
| 93 source = "mus_common_unittests_app_manifest.json" | 94 source = "mus_common_unittests_app_manifest.json" |
| 94 } | 95 } |
| OLD | NEW |