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

Side by Side Diff: mojo/mojo.gyp

Issue 69283002: Revert "Mojo: Add BindingsSupportImpl on top of HandleWatcher" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « mojo/common/handle_watcher_unittest.cc ('k') | mojo/public/bindings/lib/bindings_support.h » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'type': '<(component)', 49 'type': '<(component)',
50 'defines': [ 50 'defines': [
51 'MOJO_COMMON_IMPLEMENTATION', 51 'MOJO_COMMON_IMPLEMENTATION',
52 ], 52 ],
53 'dependencies': [ 53 'dependencies': [
54 '../base/base.gyp:base', 54 '../base/base.gyp:base',
55 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 55 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
56 'mojo_system', 56 'mojo_system',
57 ], 57 ],
58 'sources': [ 58 'sources': [
59 'common/bindings_support_impl.cc',
60 'common/bindings_support_impl.h',
61 'common/handle_watcher.cc', 59 'common/handle_watcher.cc',
62 'common/handle_watcher.h', 60 'common/handle_watcher.h',
63 'common/scoped_message_pipe.cc', 61 'common/scoped_message_pipe.cc',
64 'common/scoped_message_pipe.h', 62 'common/scoped_message_pipe.h',
65 ], 63 ],
66 'conditions': [ 64 'conditions': [
67 ['OS == "win"', { 65 ['OS == "win"', {
68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
69 'msvs_disabled_warnings': [ 67 'msvs_disabled_warnings': [
70 4267, 68 4267,
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'system/waiter_unittest.cc', 197 'system/waiter_unittest.cc',
200 ], 198 ],
201 }, 199 },
202 { 200 {
203 'target_name': 'mojo_shell_lib', 201 'target_name': 'mojo_shell_lib',
204 'type': 'static_library', 202 'type': 'static_library',
205 'dependencies': [ 203 'dependencies': [
206 '../base/base.gyp:base', 204 '../base/base.gyp:base',
207 '../net/net.gyp:net', 205 '../net/net.gyp:net',
208 '../url/url.gyp:url_lib', 206 '../url/url.gyp:url_lib',
209 'mojo_bindings',
210 'mojo_system', 207 'mojo_system',
211 'mojo_utility', 208 'mojo_utility',
212 'native_viewport', 209 'native_viewport',
213 ], 210 ],
214 'sources': [ 211 'sources': [
215 'shell/app_container.cc', 212 'shell/app_container.cc',
216 'shell/app_container.h', 213 'shell/app_container.h',
217 'shell/context.cc', 214 'shell/context.cc',
218 'shell/context.h', 215 'shell/context.h',
219 'shell/loader.cc', 216 'shell/loader.cc',
(...skipping 20 matching lines...) Expand all
240 }], 237 }],
241 ], 238 ],
242 }, 239 },
243 { 240 {
244 'target_name': 'mojo_shell', 241 'target_name': 'mojo_shell',
245 'type': 'executable', 242 'type': 'executable',
246 'dependencies': [ 243 'dependencies': [
247 '../base/base.gyp:base', 244 '../base/base.gyp:base',
248 '../ui/gl/gl.gyp:gl', 245 '../ui/gl/gl.gyp:gl',
249 '../url/url.gyp:url_lib', 246 '../url/url.gyp:url_lib',
250 'mojo_common_lib',
251 'mojo_shell_lib', 247 'mojo_shell_lib',
252 'mojo_system', 248 'mojo_system',
253 ], 249 ],
254 'sources': [ 250 'sources': [
255 'shell/desktop/mojo_main.cc', 251 'shell/desktop/mojo_main.cc',
256 ], 252 ],
257 'conditions': [ 253 'conditions': [
258 ['OS == "win"', { 254 ['OS == "win"', {
259 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 255 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
260 'msvs_disabled_warnings': [ 256 'msvs_disabled_warnings': [
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 465 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
470 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 466 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
471 'native_lib_target': 'libmojo_shell', 467 'native_lib_target': 'libmojo_shell',
472 }, 468 },
473 'includes': [ '../build/java_apk.gypi' ], 469 'includes': [ '../build/java_apk.gypi' ],
474 } 470 }
475 ], 471 ],
476 }], 472 }],
477 ], 473 ],
478 } 474 }
OLDNEW
« no previous file with comments | « mojo/common/handle_watcher_unittest.cc ('k') | mojo/public/bindings/lib/bindings_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698