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

Side by Side Diff: mojo/services/window_manager/BUILD.gn

Issue 707093002: Teach PRESUBMIT.py how to run gn check for most of the mojo repo (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update after hans landed Created 6 years, 1 month 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 | « mojo/edk/system/BUILD.gn ('k') | mojo/shell/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 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 6
7 if (use_aura) { 7 if (use_aura) {
8 8
9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager 9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager
10 shared_library("window_manager") { 10 shared_library("window_manager") {
(...skipping 22 matching lines...) Expand all
33 "window_manager_impl.cc", 33 "window_manager_impl.cc",
34 "window_manager_impl.h", 34 "window_manager_impl.h",
35 ] 35 ]
36 36
37 public_deps = [ 37 public_deps = [
38 "//mojo/aura", 38 "//mojo/aura",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//mojo/application",
44 "//mojo/common",
45 "//mojo/converters/geometry",
46 "//mojo/converters/input_events",
47 "//mojo/public/cpp/bindings",
48 "//mojo/public/interfaces/application:application",
49 "//mojo/services/public/cpp/view_manager",
50 "//mojo/services/public/interfaces/native_viewport",
51 "//mojo/services/public/interfaces/window_manager",
52 "//ui/aura",
43 "//ui/base", 53 "//ui/base",
54 "//ui/events",
44 "//ui/gfx", 55 "//ui/gfx",
45 "//ui/gfx/geometry", 56 "//ui/gfx/geometry",
46 "//ui/wm", 57 "//ui/wm",
47 "//mojo/aura",
48 "//mojo/application",
49 "//mojo/common",
50 "//mojo/converters/input_events",
51 "//mojo/services/public/cpp/view_manager",
52 "//mojo/public/interfaces/application:application",
53 "//mojo/services/public/interfaces/native_viewport",
54 "//mojo/services/public/interfaces/window_manager",
55 ] 58 ]
56 } 59 }
57 60
58 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests 61 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests
59 test("window_manager_unittests") { 62 test("window_manager_unittests") {
60 sources = [ 63 sources = [
61 "window_manager_api_unittest.cc", 64 "window_manager_api_unittest.cc",
62 "window_manager_unittests.cc", 65 "window_manager_unittests.cc",
63 ] 66 ]
64 67
65 deps = [ 68 deps = [
66 "//base/test:test_support", 69 "//base/test:test_support",
67 "//mojo/application_manager", 70 "//mojo/application_manager",
68 "//mojo/edk/system", 71 "//mojo/edk/system",
69 "//mojo/environment:chromium", 72 "//mojo/environment:chromium",
73 "//mojo/public/cpp/application",
70 "//mojo/services/public/cpp/view_manager", 74 "//mojo/services/public/cpp/view_manager",
71 "//mojo/services/public/interfaces/view_manager", 75 "//mojo/services/public/interfaces/view_manager",
72 "//mojo/services/public/interfaces/window_manager", 76 "//mojo/services/public/interfaces/window_manager",
73 "//mojo/shell:test_support", 77 "//mojo/shell:test_support",
74 "//testing/gtest", 78 "//testing/gtest",
75 "//ui/gl", 79 "//ui/gl",
76 ] 80 ]
77 81
78 if (use_x11) { 82 if (use_x11) {
79 deps += [ "//ui/gfx/x" ] 83 deps += [ "//ui/gfx/x" ]
80 } 84 }
81 } 85 }
82 86
83 } # use_aura 87 } # use_aura
OLDNEW
« no previous file with comments | « mojo/edk/system/BUILD.gn ('k') | mojo/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698