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

Side by Side Diff: mojo/mojo.gyp

Issue 62773003: Mojo: Add BindingsSupportImpl on top of HandleWatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Windows fix. 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
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'type': '<(component)', 47 'type': '<(component)',
48 'defines': [ 48 'defines': [
49 'MOJO_COMMON_IMPLEMENTATION', 49 'MOJO_COMMON_IMPLEMENTATION',
50 ], 50 ],
51 'dependencies': [ 51 'dependencies': [
52 '../base/base.gyp:base', 52 '../base/base.gyp:base',
53 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 53 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
54 'mojo_system', 54 'mojo_system',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 'common/bindings_support_impl.cc',
58 'common/bindings_support_impl.h',
57 'common/handle_watcher.cc', 59 'common/handle_watcher.cc',
58 'common/handle_watcher.h', 60 'common/handle_watcher.h',
59 'common/scoped_message_pipe.cc', 61 'common/scoped_message_pipe.cc',
60 'common/scoped_message_pipe.h', 62 'common/scoped_message_pipe.h',
61 ], 63 ],
62 'conditions': [ 64 'conditions': [
63 ['OS == "win"', { 65 ['OS == "win"', {
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
65 'msvs_disabled_warnings': [ 67 'msvs_disabled_warnings': [
66 4267, 68 4267,
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'system/waiter_unittest.cc', 197 'system/waiter_unittest.cc',
196 ], 198 ],
197 }, 199 },
198 { 200 {
199 'target_name': 'mojo_shell_lib', 201 'target_name': 'mojo_shell_lib',
200 'type': 'static_library', 202 'type': 'static_library',
201 'dependencies': [ 203 'dependencies': [
202 '../base/base.gyp:base', 204 '../base/base.gyp:base',
203 '../net/net.gyp:net', 205 '../net/net.gyp:net',
204 '../url/url.gyp:url_lib', 206 '../url/url.gyp:url_lib',
207 'mojo_bindings',
205 'mojo_system', 208 'mojo_system',
206 'mojo_utility', 209 'mojo_utility',
207 'native_viewport', 210 'native_viewport',
208 ], 211 ],
209 'sources': [ 212 'sources': [
210 'shell/app_container.cc', 213 'shell/app_container.cc',
211 'shell/app_container.h', 214 'shell/app_container.h',
212 'shell/context.cc', 215 'shell/context.cc',
213 'shell/context.h', 216 'shell/context.h',
214 'shell/loader.cc', 217 'shell/loader.cc',
(...skipping 20 matching lines...) Expand all
235 }], 238 }],
236 ], 239 ],
237 }, 240 },
238 { 241 {
239 'target_name': 'mojo_shell', 242 'target_name': 'mojo_shell',
240 'type': 'executable', 243 'type': 'executable',
241 'dependencies': [ 244 'dependencies': [
242 '../base/base.gyp:base', 245 '../base/base.gyp:base',
243 '../ui/gl/gl.gyp:gl', 246 '../ui/gl/gl.gyp:gl',
244 '../url/url.gyp:url_lib', 247 '../url/url.gyp:url_lib',
248 'mojo_common_lib',
245 'mojo_shell_lib', 249 'mojo_shell_lib',
246 'mojo_system', 250 'mojo_system',
247 ], 251 ],
248 'sources': [ 252 'sources': [
249 'shell/desktop/mojo_main.cc', 253 'shell/desktop/mojo_main.cc',
250 ], 254 ],
251 'conditions': [ 255 'conditions': [
252 ['OS == "win"', { 256 ['OS == "win"', {
253 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
254 'msvs_disabled_warnings': [ 258 'msvs_disabled_warnings': [
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 437 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
434 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 438 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
435 'native_lib_target': 'libmojo_shell', 439 'native_lib_target': 'libmojo_shell',
436 }, 440 },
437 'includes': [ '../build/java_apk.gypi' ], 441 'includes': [ '../build/java_apk.gypi' ],
438 } 442 }
439 ], 443 ],
440 }], 444 }],
441 ], 445 ],
442 } 446 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698