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

Side by Side Diff: components/mus/public/cpp/tests/BUILD.gn

Issue 1568263003: Changes top level window creation to include window state in callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn Created 4 years, 11 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
OLDNEW
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("unittest_support") { 8 source_set("unittest_support") {
9 sources = [ 9 sources = [
10 "test_window.h", 10 "test_window.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "window_unittest.cc", 45 "window_unittest.cc",
46 ] 46 ]
47 47
48 deps = [ 48 deps = [
49 ":unittest_support", 49 ":unittest_support",
50 "//base", 50 "//base",
51 "//base/test:test_support", 51 "//base/test:test_support",
52 "//components/mus/common", 52 "//components/mus/common",
53 "//components/mus/public/cpp", 53 "//components/mus/public/cpp",
54 "//mojo/application/public/cpp", 54 "//mojo/application/public/cpp",
55 "//mojo/common:common_base",
55 "//mojo/converters/geometry", 56 "//mojo/converters/geometry",
56 "//mojo/converters/input_events", 57 "//mojo/converters/input_events",
57 "//mojo/gles2", 58 "//mojo/gles2",
58 "//mojo/platform_handle:platform_handle_impl", 59 "//mojo/platform_handle:platform_handle_impl",
59 "//mojo/public/cpp/system", 60 "//mojo/public/cpp/system",
60 "//testing/gtest", 61 "//testing/gtest",
61 "//third_party/mojo/src/mojo/edk/system", 62 "//third_party/mojo/src/mojo/edk/system",
62 "//ui/events", 63 "//ui/events",
63 "//ui/gfx:test_support", 64 "//ui/gfx:test_support",
64 "//ui/gfx/geometry", 65 "//ui/gfx/geometry",
65 "//ui/mojo/geometry:interfaces", 66 "//ui/mojo/geometry:interfaces",
66 ] 67 ]
67 68
68 if (use_x11) { 69 if (use_x11) {
69 deps += [ "//ui/gfx/x" ] 70 deps += [ "//ui/gfx/x" ]
70 } 71 }
71 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698