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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1262173005: Straightens outs DEPS in mojo/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove extraneous change Created 5 years, 4 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 # Essential components (and their tests) that are needed to build 5 # Essential components (and their tests) that are needed to build
6 # Chrome should be here. Other components that are useful only in 6 # Chrome should be here. Other components that are useful only in
7 # Mojo land like mojo_shell should be in mojo.gyp. 7 # Mojo land like mojo_shell should be in mojo.gyp.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../third_party/mojo/mojo_variables.gypi', 10 '../third_party/mojo/mojo_variables.gypi',
(...skipping 18 matching lines...) Expand all
29 '../third_party/mojo/mojo_public.gyp:mojo_public_java', 29 '../third_party/mojo/mojo_public.gyp:mojo_public_java',
30 ], 30 ],
31 }], 31 }],
32 ] 32 ]
33 }, 33 },
34 { 34 {
35 'target_name': 'mojo_none', 35 'target_name': 'mojo_none',
36 'type': 'none', 36 'type': 'none',
37 }, 37 },
38 { 38 {
39 # GN version: //mojo/message_pump
40 'target_name': 'mojo_message_pump_lib',
41 'type': 'static_library',
42 'dependencies': [
43 '../base/base.gyp:base',
44 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
45 '<(mojo_system_for_component)',
46 ],
47 'export_dependent_settings': [
48 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
49 ],
50 'sources': [
51 'message_pump/handle_watcher.cc',
52 'message_pump/handle_watcher.h',
53 'message_pump/message_pump_mojo.cc',
54 'message_pump/message_pump_mojo.h',
55 'message_pump/message_pump_mojo_handler.h',
56 'message_pump/time_helper.cc',
57 'message_pump/time_helper.h',
58 ],
59 },
60 {
39 # GN version: //mojo/common 61 # GN version: //mojo/common
40 'target_name': 'mojo_common_lib', 62 'target_name': 'mojo_common_lib',
41 'type': '<(component)', 63 'type': '<(component)',
42 'defines': [ 64 'defines': [
43 'MOJO_COMMON_IMPLEMENTATION', 65 'MOJO_COMMON_IMPLEMENTATION',
44 ], 66 ],
45 'dependencies': [ 67 'dependencies': [
46 '../base/base.gyp:base', 68 '../base/base.gyp:base',
47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 69 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
48 '<(mojo_system_for_component)', 70 '<(mojo_system_for_component)',
49 ], 71 ],
50 'export_dependent_settings': [ 72 'export_dependent_settings': [
51 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 73 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
52 ], 74 ],
53 'sources': [ 75 'sources': [
54 'common/common_type_converters.cc', 76 'common/common_type_converters.cc',
55 'common/common_type_converters.h', 77 'common/common_type_converters.h',
56 'common/data_pipe_file_utils.cc', 78 'common/data_pipe_file_utils.cc',
57 'common/data_pipe_utils.cc', 79 'common/data_pipe_utils.cc',
58 'common/data_pipe_utils.h', 80 'common/data_pipe_utils.h',
59 'common/handle_watcher.cc',
60 'common/handle_watcher.h',
61 'common/message_pump_mojo.cc',
62 'common/message_pump_mojo.h',
63 'common/message_pump_mojo_handler.h',
64 'common/time_helper.cc',
65 'common/time_helper.h',
66 ], 81 ],
67 }, 82 },
68 { 83 {
69 # GN version: //mojo/common:url_type_converters 84 # GN version: //mojo/common:url_type_converters
70 'target_name': 'mojo_url_type_converters', 85 'target_name': 'mojo_url_type_converters',
71 'type': 'static_library', 86 'type': 'static_library',
72 'dependencies': [ 87 'dependencies': [
73 '../base/base.gyp:base', 88 '../base/base.gyp:base',
74 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 89 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
75 '../url/url.gyp:url_lib', 90 '../url/url.gyp:url_lib',
(...skipping 29 matching lines...) Expand all
105 { 120 {
106 # GN version: //mojo/common:mojo_common_unittests 121 # GN version: //mojo/common:mojo_common_unittests
107 'target_name': 'mojo_common_unittests', 122 'target_name': 'mojo_common_unittests',
108 'type': 'executable', 123 'type': 'executable',
109 'dependencies': [ 124 'dependencies': [
110 '../base/base.gyp:base', 125 '../base/base.gyp:base',
111 '../base/base.gyp:test_support_base', 126 '../base/base.gyp:test_support_base',
112 '../base/base.gyp:base_message_loop_tests', 127 '../base/base.gyp:base_message_loop_tests',
113 '../testing/gtest.gyp:gtest', 128 '../testing/gtest.gyp:gtest',
114 '../url/url.gyp:url_lib', 129 '../url/url.gyp:url_lib',
115 'mojo_common_lib',
116 'mojo_url_type_converters',
117 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 130 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
118 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support', 131 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support',
119 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests', 132 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests',
120 'mojo_environment_chromium',
121 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 133 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
122 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils', 134 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils',
135 'mojo_common_lib',
136 'mojo_environment_chromium',
137 'mojo_message_pump_lib',
138 'mojo_url_type_converters',
123 ], 139 ],
124 'sources': [ 140 'sources': [
125 'common/common_type_converters_unittest.cc', 141 'common/common_type_converters_unittest.cc',
126 'common/handle_watcher_unittest.cc', 142 'message_pump/handle_watcher_unittest.cc',
127 'common/message_pump_mojo_unittest.cc', 143 'message_pump/message_pump_mojo_unittest.cc',
128 ], 144 ],
129 }, 145 },
130 { 146 {
131 # GN version: //mojo/environment:chromium 147 # GN version: //mojo/environment:chromium
132 'target_name': 'mojo_environment_chromium', 148 'target_name': 'mojo_environment_chromium',
133 'type': 'static_library', 149 'type': 'static_library',
134 'dependencies': [ 150 'dependencies': [
135 'mojo_environment_chromium_impl', 151 'mojo_environment_chromium_impl',
136 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 152 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
137 ], 153 ],
138 'sources': [ 154 'sources': [
139 'environment/environment.cc',
140 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) 155 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.)
141 "../third_party/mojo/src/mojo/public/cpp/environment/async_waiter.h", 156 "../third_party/mojo/src/mojo/public/cpp/environment/async_waiter.h",
142 "../third_party/mojo/src/mojo/public/cpp/environment/lib/async_waiter.cc ", 157 "../third_party/mojo/src/mojo/public/cpp/environment/lib/async_waiter.cc ",
143 "../third_party/mojo/src/mojo/public/cpp/environment/lib/logging.cc", 158 "../third_party/mojo/src/mojo/public/cpp/environment/lib/logging.cc",
144 "../third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tra cking.cc", 159 "../third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tra cking.cc",
145 "../third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tra cking.cc", 160 "../third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tra cking.cc",
146 "../third_party/mojo/src/mojo/public/cpp/environment/logging.h", 161 "../third_party/mojo/src/mojo/public/cpp/environment/logging.h",
147 "../third_party/mojo/src/mojo/public/cpp/environment/task_tracker.h", 162 "../third_party/mojo/src/mojo/public/cpp/environment/task_tracker.h",
163 'environment/environment.cc',
148 ], 164 ],
149 'include_dirs': [ 165 'include_dirs': [
150 '..', 166 '..',
151 '../third_party/mojo/src', 167 '../third_party/mojo/src',
152 ], 168 ],
153 'direct_dependent_settings': { 169 'direct_dependent_settings': {
154 'include_dirs': [ 170 'include_dirs': [
155 '../third_party/mojo/src', 171 '../third_party/mojo/src',
156 ], 172 ],
157 }, 173 },
158 'export_dependent_settings': [ 174 'export_dependent_settings': [
159 'mojo_environment_chromium_impl', 175 'mojo_environment_chromium_impl',
160 ], 176 ],
161 }, 177 },
162 { 178 {
163 # GN version: //mojo/environment:chromium_impl 179 # GN version: //mojo/environment:chromium_impl
164 'target_name': 'mojo_environment_chromium_impl', 180 'target_name': 'mojo_environment_chromium_impl',
165 'type': '<(component)', 181 'type': '<(component)',
166 'defines': [ 182 'defines': [
167 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION', 183 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION',
168 ], 184 ],
169 'dependencies': [ 185 'dependencies': [
170 '../base/base.gyp:base', 186 '../base/base.gyp:base',
171 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 187 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
172 'mojo_common_lib', 188 'mojo_message_pump_lib',
173 '<(mojo_system_for_component)', 189 '<(mojo_system_for_component)',
174 ], 190 ],
175 'sources': [ 191 'sources': [
176 'environment/default_async_waiter_impl.cc', 192 'environment/default_async_waiter_impl.cc',
177 'environment/default_async_waiter_impl.h', 193 'environment/default_async_waiter_impl.h',
178 'environment/default_logger_impl.cc', 194 'environment/default_logger_impl.cc',
179 'environment/default_logger_impl.h', 195 'environment/default_logger_impl.h',
180 'environment/default_run_loop_impl.cc', 196 'environment/default_run_loop_impl.cc',
181 'environment/default_run_loop_impl.h', 197 'environment/default_run_loop_impl.h',
182 'environment/default_task_tracker_impl.cc', 198 'environment/default_task_tracker_impl.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'application/public/cpp/lib/service_connector_registry.cc', 249 'application/public/cpp/lib/service_connector_registry.cc',
234 'application/public/cpp/lib/service_connector_registry.h', 250 'application/public/cpp/lib/service_connector_registry.h',
235 'application/public/cpp/lib/service_provider_impl.cc', 251 'application/public/cpp/lib/service_provider_impl.cc',
236 'application/public/cpp/lib/service_registry.cc', 252 'application/public/cpp/lib/service_registry.cc',
237 'application/public/cpp/lib/service_registry.h', 253 'application/public/cpp/lib/service_registry.h',
238 'application/public/cpp/service_connector.h', 254 'application/public/cpp/service_connector.h',
239 'application/public/cpp/service_provider_impl.h', 255 'application/public/cpp/service_provider_impl.h',
240 ], 256 ],
241 'dependencies': [ 257 'dependencies': [
242 'mojo_application_bindings', 258 'mojo_application_bindings',
243 'mojo_common_lib', 259 'mojo_message_pump_lib',
244 ], 260 ],
245 }, 261 },
246 { 262 {
247 # GN version: //mojo/public/interfaces/application:application 263 # GN version: //mojo/public/interfaces/application:application
248 'target_name': 'mojo_application_bindings', 264 'target_name': 'mojo_application_bindings',
249 'type': 'static_library', 265 'type': 'static_library',
250 'dependencies': [ 266 'dependencies': [
251 'mojo_application_bindings_mojom', 267 'mojo_application_bindings_mojom',
252 'mojo_services.gyp:network_service_bindings_lib', 268 'mojo_services.gyp:network_service_bindings_lib',
253 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 269 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 '../build/isolate.gypi', 373 '../build/isolate.gypi',
358 ], 374 ],
359 'sources': [ 375 'sources': [
360 'mojo_common_unittests.isolate', 376 'mojo_common_unittests.isolate',
361 ], 377 ],
362 }, 378 },
363 ], 379 ],
364 }], 380 }],
365 ] 381 ]
366 } 382 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698