Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1902)

Side by Side Diff: components/exo/BUILD.gn

Issue 2664113004: Reland: mash: Fix MusPropertyMirrorAsh for owned properties; add test. (Closed)
Patch Set: Sync and rebase. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/views/task_manager_view.cc ('k') | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("exo") { 8 source_set("exo") {
9 sources = [ 9 sources = [
10 "buffer.cc", 10 "buffer.cc",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "wm_helper.cc", 43 "wm_helper.cc",
44 "wm_helper.h", 44 "wm_helper.h",
45 "wm_helper_ash.cc", 45 "wm_helper_ash.cc",
46 "wm_helper_ash.h", 46 "wm_helper_ash.h",
47 "wm_helper_mus.cc", 47 "wm_helper_mus.cc",
48 "wm_helper_mus.h", 48 "wm_helper_mus.h",
49 ] 49 ]
50 50
51 deps = [ 51 deps = [
52 "//ash", 52 "//ash",
53 "//ash/public/cpp", 53 "//ash/public/cpp:ash_public_cpp",
54 "//base", 54 "//base",
55 "//cc", 55 "//cc",
56 "//cc/ipc:interfaces", 56 "//cc/ipc:interfaces",
57 "//cc/surfaces", 57 "//cc/surfaces",
58 "//device/gamepad", 58 "//device/gamepad",
59 "//gpu", 59 "//gpu",
60 "//gpu/command_buffer/client:gles2_interface", 60 "//gpu/command_buffer/client:gles2_interface",
61 "//skia", 61 "//skia",
62 "//ui/aura", 62 "//ui/aura",
63 "//ui/compositor", 63 "//ui/compositor",
(...skipping 21 matching lines...) Expand all
85 85
86 sources = [ 86 sources = [
87 "test/exo_test_base.cc", 87 "test/exo_test_base.cc",
88 "test/exo_test_base.h", 88 "test/exo_test_base.h",
89 "test/exo_test_helper.cc", 89 "test/exo_test_helper.cc",
90 "test/exo_test_helper.h", 90 "test/exo_test_helper.h",
91 ] 91 ]
92 92
93 deps = [ 93 deps = [
94 ":exo", 94 ":exo",
95 "//ash/public/cpp", 95 "//ash/public/cpp:ash_public_cpp",
96 "//ash/test:ash_with_aura_test_support", 96 "//ash/test:ash_with_aura_test_support",
97 "//ash/test:test_support_without_content", 97 "//ash/test:test_support_without_content",
98 "//base", 98 "//base",
99 "//gpu", 99 "//gpu",
100 "//skia", 100 "//skia",
101 "//testing/gtest", 101 "//testing/gtest",
102 "//ui/aura", 102 "//ui/aura",
103 "//ui/compositor", 103 "//ui/compositor",
104 "//ui/gfx/geometry", 104 "//ui/gfx/geometry",
105 "//ui/views", 105 "//ui/views",
(...skipping 14 matching lines...) Expand all
120 "shell_surface_unittest.cc", 120 "shell_surface_unittest.cc",
121 "sub_surface_unittest.cc", 121 "sub_surface_unittest.cc",
122 "surface_unittest.cc", 122 "surface_unittest.cc",
123 "touch_unittest.cc", 123 "touch_unittest.cc",
124 ] 124 ]
125 125
126 deps = [ 126 deps = [
127 ":exo", 127 ":exo",
128 ":test_support", 128 ":test_support",
129 "//ash", 129 "//ash",
130 "//ash/public/cpp", 130 "//ash/public/cpp:ash_public_cpp",
131 "//base", 131 "//base",
132 "//base/test:test_support", 132 "//base/test:test_support",
133 "//cc", 133 "//cc",
134 "//cc/surfaces:surfaces", 134 "//cc/surfaces:surfaces",
135 "//components/user_manager", 135 "//components/user_manager",
136 "//device/gamepad:test_helpers", 136 "//device/gamepad:test_helpers",
137 "//gpu/command_buffer/client:gles2_interface", 137 "//gpu/command_buffer/client:gles2_interface",
138 "//skia", 138 "//skia",
139 "//testing/gmock", 139 "//testing/gmock",
140 "//testing/gtest", 140 "//testing/gtest",
(...skipping 30 matching lines...) Expand all
171 data_deps = [ 171 data_deps = [
172 "//ash/common/strings:ash_test_strings", 172 "//ash/common/strings:ash_test_strings",
173 "//ash/resources:ash_test_resources_100_percent", 173 "//ash/resources:ash_test_resources_100_percent",
174 "//ash/resources:ash_test_resources_200_percent", 174 "//ash/resources:ash_test_resources_200_percent",
175 ] 175 ]
176 176
177 if (is_linux) { 177 if (is_linux) {
178 deps += [ "//components/exo/wayland:unit_tests" ] 178 deps += [ "//components/exo/wayland:unit_tests" ]
179 } 179 }
180 } 180 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/task_manager_view.cc ('k') | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698