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

Side by Side Diff: mojo/edk/system/BUILD.gn

Issue 621153003: Move mojo edk into mojo/edk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix checkdeps Created 6 years, 2 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 | « mojo/edk/embedder/test_embedder.cc ('k') | mojo/edk/system/PRESUBMIT.py » ('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 config("system_config") { 5 config("system_config") {
6 defines = [ 6 defines = [
7 # Ensures that dependent projects import the core functions on Windows. 7 # Ensures that dependent projects import the core functions on Windows.
8 "MOJO_USE_SYSTEM_IMPL", 8 "MOJO_USE_SYSTEM_IMPL",
9 ] 9 ]
10 } 10 }
11 11
12 component("system") { 12 component("system") {
13 output_name = "mojo_system_impl" 13 output_name = "mojo_system_impl"
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//base/third_party/dynamic_annotations", 17 "//base/third_party/dynamic_annotations",
18 "//mojo/embedder", 18 "//mojo/edk/embedder",
19 ] 19 ]
20 20
21 defines = [ 21 defines = [
22 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", 22 "MOJO_SYSTEM_IMPL_IMPLEMENTATION",
23 "MOJO_SYSTEM_IMPLEMENTATION", 23 "MOJO_SYSTEM_IMPLEMENTATION",
24 ] 24 ]
25 25
26 all_dependent_configs = [ ":system_config" ] 26 all_dependent_configs = [ ":system_config" ]
27 27
28 sources = [ 28 sources = [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "waiter_list.cc", 83 "waiter_list.cc",
84 "waiter_list.h", 84 "waiter_list.h",
85 ] 85 ]
86 } 86 }
87 87
88 # GYP version: mojo/mojo_base.gyp:mojo_system_unittests 88 # GYP version: mojo/mojo_base.gyp:mojo_system_unittests
89 test("mojo_system_unittests") { 89 test("mojo_system_unittests") {
90 deps = [ 90 deps = [
91 ":system", 91 ":system",
92 "//base", 92 "//base",
93 "//mojo/common/test:test_support", 93 "//mojo/edk/embedder:embedder_unittests",
94 "//mojo/embedder:embedder_unittests", 94 "//mojo/edk/test:test_support",
95 "//testing/gtest", 95 "//testing/gtest",
96 ] 96 ]
97 97
98 sources = [ 98 sources = [
99 "../test/multiprocess_test_helper_unittest.cc",
99 "channel_unittest.cc", 100 "channel_unittest.cc",
100 "core_unittest.cc",
101 "core_test_base.cc", 101 "core_test_base.cc",
102 "core_test_base.h", 102 "core_test_base.h",
103 "core_unittest.cc",
103 "data_pipe_unittest.cc", 104 "data_pipe_unittest.cc",
104 "dispatcher_unittest.cc", 105 "dispatcher_unittest.cc",
105 "local_data_pipe_unittest.cc", 106 "local_data_pipe_unittest.cc",
106 "memory_unittest.cc", 107 "memory_unittest.cc",
107 "message_pipe_dispatcher_unittest.cc", 108 "message_pipe_dispatcher_unittest.cc",
109 "message_pipe_test_utils.cc",
108 "message_pipe_test_utils.h", 110 "message_pipe_test_utils.h",
109 "message_pipe_test_utils.cc",
110 "message_pipe_unittest.cc", 111 "message_pipe_unittest.cc",
111 "multiprocess_message_pipe_unittest.cc", 112 "multiprocess_message_pipe_unittest.cc",
112 "options_validation_unittest.cc", 113 "options_validation_unittest.cc",
113 "platform_handle_dispatcher_unittest.cc", 114 "platform_handle_dispatcher_unittest.cc",
114 "raw_channel_unittest.cc", 115 "raw_channel_unittest.cc",
115 "remote_message_pipe_unittest.cc", 116 "remote_message_pipe_unittest.cc",
116 "run_all_unittests.cc", 117 "run_all_unittests.cc",
117 "shared_buffer_dispatcher_unittest.cc", 118 "shared_buffer_dispatcher_unittest.cc",
118 "simple_dispatcher_unittest.cc", 119 "simple_dispatcher_unittest.cc",
119 "test_utils.cc", 120 "test_utils.cc",
120 "test_utils.h", 121 "test_utils.h",
121 "waiter_list_unittest.cc", 122 "waiter_list_unittest.cc",
122 "waiter_test_utils.cc", 123 "waiter_test_utils.cc",
123 "waiter_test_utils.h", 124 "waiter_test_utils.h",
124 "waiter_unittest.cc", 125 "waiter_unittest.cc",
125 ] 126 ]
126 } 127 }
127 128
128 # GYP version: mojo/mojo_base.gyp:mojo_message_pipe_perftests 129 # GYP version: mojo/mojo_base.gyp:mojo_message_pipe_perftests
129 test("mojo_message_pipe_perftests") { 130 test("mojo_message_pipe_perftests") {
130 deps = [ 131 deps = [
131 ":system", 132 ":system",
132 "//base", 133 "//base",
133 "//base/test:test_support", 134 "//base/test:test_support",
134 "//base/test:test_support_perf", 135 "//base/test:test_support_perf",
135 "//mojo/common/test:test_support", 136 "//mojo/edk/test:test_support",
136 "//testing/gtest", 137 "//testing/gtest",
137 ] 138 ]
138 139
139 sources = [ 140 sources = [
140 "message_pipe_perftest.cc", 141 "message_pipe_perftest.cc",
141 "message_pipe_test_utils.h", 142 "message_pipe_test_utils.h",
142 "message_pipe_test_utils.cc", 143 "message_pipe_test_utils.cc",
143 "test_utils.cc", 144 "test_utils.cc",
144 "test_utils.h", 145 "test_utils.h",
145 ] 146 ]
146 } 147 }
OLDNEW
« no previous file with comments | « mojo/edk/embedder/test_embedder.cc ('k') | mojo/edk/system/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698