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

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

Issue 713513002: Change mojo application name to {name}.mojo (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add missing library. 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/services/view_manager/BUILD.gn ('k') | mojo/shell/mojo_url_resolver.cc » ('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 import("//mojo/public/mojo_application.gni")
6 7
7 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager 8 mojo_native_application("window_manager") {
8 shared_library("window_manager") {
9 sources = [ "main.cc" ] 9 sources = [ "main.cc" ]
10 10
11 public_deps = [ 11 public_deps = [
12 ":lib", 12 ":lib",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//mojo/application", 17 "//mojo/application",
18 "//mojo/public/c/system:for_shared_library", 18 "//mojo/public/c/system:for_shared_library",
19 "//mojo/services/public/cpp/view_manager", 19 "//mojo/services/public/cpp/view_manager",
20 ] 20 ]
21 } 21 }
22 22
23 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib
24 source_set("lib") { 23 source_set("lib") {
25 sources = [ 24 sources = [
26 "basic_focus_rules.cc", 25 "basic_focus_rules.cc",
27 "basic_focus_rules.h", 26 "basic_focus_rules.h",
28 "focus_controller.cc", 27 "focus_controller.cc",
29 "focus_controller.h", 28 "focus_controller.h",
30 "focus_controller_observer.h", 29 "focus_controller_observer.h",
31 "focus_rules.h", 30 "focus_rules.h",
32 "native_viewport_event_dispatcher_impl.cc", 31 "native_viewport_event_dispatcher_impl.cc",
33 "native_viewport_event_dispatcher_impl.h", 32 "native_viewport_event_dispatcher_impl.h",
(...skipping 18 matching lines...) Expand all
52 "//mojo/application", 51 "//mojo/application",
53 "//mojo/common", 52 "//mojo/common",
54 "//mojo/converters/input_events", 53 "//mojo/converters/input_events",
55 "//mojo/services/public/cpp/view_manager", 54 "//mojo/services/public/cpp/view_manager",
56 "//mojo/public/interfaces/application:application", 55 "//mojo/public/interfaces/application:application",
57 "//mojo/services/public/interfaces/native_viewport", 56 "//mojo/services/public/interfaces/native_viewport",
58 "//mojo/services/public/interfaces/window_manager", 57 "//mojo/services/public/interfaces/window_manager",
59 ] 58 ]
60 } 59 }
61 60
62 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests
63 test("window_manager_unittests") { 61 test("window_manager_unittests") {
64 sources = [ 62 sources = [
65 "window_manager_api_unittest.cc", 63 "window_manager_api_unittest.cc",
66 "window_manager_unittests.cc", 64 "window_manager_unittests.cc",
67 ] 65 ]
68 66
69 deps = [ 67 deps = [
70 "//base/test:test_support", 68 "//base/test:test_support",
71 "//mojo/application_manager", 69 "//mojo/application_manager",
72 "//mojo/edk/system", 70 "//mojo/edk/system",
73 "//mojo/environment:chromium", 71 "//mojo/environment:chromium",
74 "//mojo/services/public/cpp/view_manager", 72 "//mojo/services/public/cpp/view_manager",
75 "//mojo/services/public/interfaces/view_manager", 73 "//mojo/services/public/interfaces/view_manager",
76 "//mojo/services/public/interfaces/window_manager", 74 "//mojo/services/public/interfaces/window_manager",
77 "//mojo/shell:test_support", 75 "//mojo/shell:test_support",
78 "//testing/gtest", 76 "//testing/gtest",
79 "//ui/gl", 77 "//ui/gl",
80 ] 78 ]
81 79
82 if (use_x11) { 80 if (use_x11) {
83 deps += [ "//ui/gfx/x" ] 81 deps += [ "//ui/gfx/x" ]
84 } 82 }
85 } 83 }
OLDNEW
« no previous file with comments | « mojo/services/view_manager/BUILD.gn ('k') | mojo/shell/mojo_url_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698