OLD | NEW |
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_common_lib', | 14 'mojo_common_lib', |
15 'mojo_common_unittests', | 15 'mojo_common_unittests', |
16 'mojo_public_test_support', | 16 'mojo_public_test_support', |
17 'mojo_public_unittests', | 17 'mojo_public_unittests', |
18 'mojo_public_perftests', | 18 'mojo_public_perftests', |
19 'mojo_system', | 19 'mojo_system', |
20 'mojo_system_unittests', | 20 'mojo_system_unittests', |
21 'mojo_shell_lib', | 21 'mojo_shell_lib', |
22 'mojo_shell', | 22 'mojo_shell', |
23 'mojo_utility', | 23 'mojo_utility', |
24 'mojo_js', | 24 'mojo_js', |
25 'sample_app', | 25 'sample_app', |
26 'mojo_bindings', | 26 'mojo_bindings', |
27 'mojo_bindings_test', | 27 'mojo_bindings_test', |
| 28 'mojo_js_bindings', |
28 'native_viewport', | 29 'native_viewport', |
29 ], | 30 ], |
30 }, | 31 }, |
31 { | 32 { |
32 'target_name': 'mojo_public_test_support', | 33 'target_name': 'mojo_public_test_support', |
33 'type': 'static_library', | 34 'type': 'static_library', |
34 'dependencies': [ | 35 'dependencies': [ |
35 '../base/base.gyp:base', | 36 '../base/base.gyp:base', |
36 '../testing/gtest.gyp:gtest', | 37 '../testing/gtest.gyp:gtest', |
37 'mojo_system', | 38 'mojo_system', |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 ], | 271 ], |
271 }, | 272 }, |
272 { | 273 { |
273 'target_name': 'mojo_js', | 274 'target_name': 'mojo_js', |
274 'type': 'shared_library', | 275 'type': 'shared_library', |
275 'include_dirs': [ | 276 'include_dirs': [ |
276 '..' | 277 '..' |
277 ], | 278 ], |
278 'dependencies': [ | 279 'dependencies': [ |
279 '../v8/tools/gyp/v8.gyp:v8', | 280 '../v8/tools/gyp/v8.gyp:v8', |
| 281 'mojo_js_bindings', |
280 ], | 282 ], |
281 'sources': [ | 283 'sources': [ |
282 'apps/js/main.cc', | 284 'apps/js/main.cc', |
283 'apps/js/v8_environment.cc', | 285 'apps/js/v8_environment.cc', |
284 'apps/js/v8_environment.h', | 286 'apps/js/v8_environment.h', |
285 ], | 287 ], |
286 }, | 288 }, |
287 { | 289 { |
288 'target_name': 'sample_app', | 290 'target_name': 'sample_app', |
289 'type': 'shared_library', | 291 'type': 'shared_library', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 'mojo_bindings', | 334 'mojo_bindings', |
333 ], | 335 ], |
334 'sources': [ | 336 'sources': [ |
335 'public/bindings/sample/generated/sample_service.cc', | 337 'public/bindings/sample/generated/sample_service.cc', |
336 'public/bindings/sample/generated/sample_service.h', | 338 'public/bindings/sample/generated/sample_service.h', |
337 'public/bindings/sample/generated/sample_service_internal.h', | 339 'public/bindings/sample/generated/sample_service_internal.h', |
338 'public/bindings/sample/sample_test.cc', | 340 'public/bindings/sample/sample_test.cc', |
339 ], | 341 ], |
340 }, | 342 }, |
341 { | 343 { |
| 344 'target_name': 'mojo_js_bindings', |
| 345 'type': 'static_library', |
| 346 'include_dirs': [ |
| 347 '..' |
| 348 ], |
| 349 'dependencies': [ |
| 350 '../v8/tools/gyp/v8.gyp:v8', |
| 351 ], |
| 352 'export_dependent_settings': [ |
| 353 '../v8/tools/gyp/v8.gyp:v8', |
| 354 ], |
| 355 'sources': [ |
| 356 'public/bindings/js/v8_array_buffer.cc', |
| 357 'public/bindings/js/v8_array_buffer.h', |
| 358 'public/bindings/js/v8_conversions.h', |
| 359 'public/bindings/js/v8_core.cc', |
| 360 'public/bindings/js/v8_core.h', |
| 361 'public/bindings/js/v8_exceptions.cc', |
| 362 'public/bindings/js/v8_exceptions.h', |
| 363 'public/bindings/js/v8_per_isolate_data.cc', |
| 364 'public/bindings/js/v8_per_isolate_data.h', |
| 365 'public/bindings/js/v8_wrapper.cc', |
| 366 'public/bindings/js/v8_wrapper.h', |
| 367 ], |
| 368 }, |
| 369 { |
342 'target_name': 'native_viewport', | 370 'target_name': 'native_viewport', |
343 'type': 'static_library', | 371 'type': 'static_library', |
344 'dependencies': [ | 372 'dependencies': [ |
345 '../base/base.gyp:base', | 373 '../base/base.gyp:base', |
346 '../gpu/gpu.gyp:command_buffer_service', | 374 '../gpu/gpu.gyp:command_buffer_service', |
347 '../gpu/gpu.gyp:gles2_implementation', | 375 '../gpu/gpu.gyp:gles2_implementation', |
348 '../ui/events/events.gyp:events', | 376 '../ui/events/events.gyp:events', |
349 '../ui/gfx/gfx.gyp:gfx', | 377 '../ui/gfx/gfx.gyp:gfx', |
350 '../ui/gl/gl.gyp:gl', | 378 '../ui/gl/gl.gyp:gl', |
351 ], | 379 ], |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 477 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
450 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 478 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
451 'native_lib_target': 'libmojo_shell', | 479 'native_lib_target': 'libmojo_shell', |
452 }, | 480 }, |
453 'includes': [ '../build/java_apk.gypi' ], | 481 'includes': [ '../build/java_apk.gypi' ], |
454 } | 482 } |
455 ], | 483 ], |
456 }], | 484 }], |
457 ], | 485 ], |
458 } | 486 } |
OLD | NEW |