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

Side by Side Diff: mojo/mojo.gyp

Issue 54743003: Mojo: bindings connector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extract SimpleBindingsSupport 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 {
11 'target_name': 'mojo', 11 'target_name': 'mojo',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 'mojo_public_test_support', 14 'mojo_public_test_support',
15 'mojo_public_unittests', 15 'mojo_public_unittests',
16 'mojo_public_perftests', 16 'mojo_public_perftests',
17 'mojo_system', 17 'mojo_system',
18 'mojo_system_unittests', 18 'mojo_system_unittests',
19 ], 19 ],
20 }, 20 },
21 { 21 {
22 'target_name': 'mojo_public_test_support', 22 'target_name': 'mojo_public_test_support',
23 'type': 'static_library', 23 'type': 'static_library',
24 'dependencies': [ 24 'dependencies': [
25 '../base/base.gyp:base', 25 '../base/base.gyp:base',
26 '../testing/gtest.gyp:gtest', 26 '../testing/gtest.gyp:gtest',
27 'mojo_system', 27 'mojo_system',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'public/tests/simple_bindings_support.cc',
31 'public/tests/simple_bindings_support.h',
30 'public/tests/test_support.cc', 32 'public/tests/test_support.cc',
31 'public/tests/test_support.h', 33 'public/tests/test_support.h',
32 ], 34 ],
33 }, 35 },
34 { 36 {
35 'target_name': 'mojo_public_unittests', 37 'target_name': 'mojo_public_unittests',
36 'type': 'executable', 38 'type': 'executable',
37 'dependencies': [ 39 'dependencies': [
38 '../base/base.gyp:run_all_unittests', 40 '../base/base.gyp:run_all_unittests',
39 '../testing/gtest.gyp:gtest', 41 '../testing/gtest.gyp:gtest',
42 'mojo_bindings',
40 'mojo_public_test_support', 43 'mojo_public_test_support',
41 'mojo_system', 44 'mojo_system',
42 ], 45 ],
43 'sources': [ 46 'sources': [
47 'public/tests/bindings_connector_unittest.cc',
44 'public/tests/system_core_unittest.cc', 48 'public/tests/system_core_unittest.cc',
45 ], 49 ],
46 }, 50 },
47 { 51 {
48 'target_name': 'mojo_public_perftests', 52 'target_name': 'mojo_public_perftests',
49 'type': 'executable', 53 'type': 'executable',
50 'dependencies': [ 54 'dependencies': [
51 '../base/base.gyp:base', 55 '../base/base.gyp:base',
52 '../base/base.gyp:test_support_perf', 56 '../base/base.gyp:test_support_perf',
53 '../testing/gtest.gyp:gtest', 57 '../testing/gtest.gyp:gtest',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'target_name': 'mojo_bindings', 232 'target_name': 'mojo_bindings',
229 'type': 'static_library', 233 'type': 'static_library',
230 'include_dirs': [ 234 'include_dirs': [
231 '..' 235 '..'
232 ], 236 ],
233 'sources': [ 237 'sources': [
234 'public/bindings/lib/bindings.h', 238 'public/bindings/lib/bindings.h',
235 'public/bindings/lib/bindings_internal.h', 239 'public/bindings/lib/bindings_internal.h',
236 'public/bindings/lib/bindings_serialization.cc', 240 'public/bindings/lib/bindings_serialization.cc',
237 'public/bindings/lib/bindings_serialization.h', 241 'public/bindings/lib/bindings_serialization.h',
242 'public/bindings/lib/bindings_support.cc',
243 'public/bindings/lib/bindings_support.h',
238 'public/bindings/lib/buffer.cc', 244 'public/bindings/lib/buffer.cc',
239 'public/bindings/lib/buffer.h', 245 'public/bindings/lib/buffer.h',
246 'public/bindings/lib/connector.cc',
247 'public/bindings/lib/connector.h',
240 'public/bindings/lib/message.cc', 248 'public/bindings/lib/message.cc',
241 'public/bindings/lib/message.h', 249 'public/bindings/lib/message.h',
242 'public/bindings/lib/message_builder.cc', 250 'public/bindings/lib/message_builder.cc',
243 'public/bindings/lib/message_builder.h', 251 'public/bindings/lib/message_builder.h',
252 'public/bindings/lib/remote_ptr.h',
244 ], 253 ],
245 }, 254 },
246 { 255 {
247 'target_name': 'mojo_bindings_test', 256 'target_name': 'mojo_bindings_test',
248 'type': 'executable', 257 'type': 'executable',
249 'include_dirs': [ 258 'include_dirs': [
250 '..' 259 '..'
251 ], 260 ],
252 'dependencies': [ 261 'dependencies': [
253 'mojo_bindings', 262 'mojo_bindings',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 387 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
379 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 388 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
380 'native_lib_target': 'libmojo_shell', 389 'native_lib_target': 'libmojo_shell',
381 }, 390 },
382 'includes': [ '../build/java_apk.gypi' ], 391 'includes': [ '../build/java_apk.gypi' ],
383 } 392 }
384 ], 393 ],
385 }], 394 }],
386 ], 395 ],
387 } 396 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/bindings/lib/bindings_support.h » ('j') | mojo/public/bindings/lib/bindings_support.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698