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

Side by Side Diff: mojo/mojo.gyp

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix skipped comment 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_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 'mojom_test', 27 'mojom_test',
28 'mojo_bindings_test', 28 'mojo_bindings_test',
29 'native_viewport', 29 'mojo_js_bindings',
30 'mojo_js_bindings_unittests',
31 'mojo_bindings',
30 ], 32 ],
31 }, 33 },
32 { 34 {
33 'target_name': 'mojo_public_test_support', 35 'target_name': 'mojo_public_test_support',
34 'type': 'static_library', 36 'type': 'static_library',
35 'dependencies': [ 37 'dependencies': [
36 '../base/base.gyp:base', 38 '../base/base.gyp:base',
37 '../testing/gtest.gyp:gtest', 39 '../testing/gtest.gyp:gtest',
38 'mojo_system', 40 'mojo_system',
39 ], 41 ],
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 'public/utility/scoped_handle.h', 272 'public/utility/scoped_handle.h',
271 ], 273 ],
272 }, 274 },
273 { 275 {
274 'target_name': 'mojo_js', 276 'target_name': 'mojo_js',
275 'type': 'shared_library', 277 'type': 'shared_library',
276 'include_dirs': [ 278 'include_dirs': [
277 '..' 279 '..'
278 ], 280 ],
279 'dependencies': [ 281 'dependencies': [
280 '../v8/tools/gyp/v8.gyp:v8', 282 'mojo_js_bindings',
281 ], 283 ],
282 'sources': [ 284 'sources': [
283 'apps/js/main.cc', 285 'apps/js/main.cc',
284 'apps/js/v8_environment.cc',
285 'apps/js/v8_environment.h',
286 ], 286 ],
287 }, 287 },
288 { 288 {
289 'target_name': 'sample_app', 289 'target_name': 'sample_app',
290 'type': 'shared_library', 290 'type': 'shared_library',
291 'dependencies': [ 291 'dependencies': [
292 '../ui/gl/gl.gyp:gl', 292 '../ui/gl/gl.gyp:gl',
293 'mojo_system', 293 'mojo_system',
294 ], 294 ],
295 'sources': [ 295 'sources': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 'mojo_bindings', 347 'mojo_bindings',
348 'mojo_system', 348 'mojo_system',
349 ], 349 ],
350 'sources': [ 350 'sources': [
351 'public/bindings/sample/mojom/sample_service.cc', 351 'public/bindings/sample/mojom/sample_service.cc',
352 'public/bindings/sample/mojom/sample_service.h', 352 'public/bindings/sample/mojom/sample_service.h',
353 'public/bindings/sample/mojom/sample_service_internal.h', 353 'public/bindings/sample/mojom/sample_service_internal.h',
354 'public/bindings/sample/sample_test.cc', 354 'public/bindings/sample/sample_test.cc',
355 ], 355 ],
356 }, 356 },
357 {
358 'target_name': 'mojo_js_bindings',
359 'type': 'static_library',
360 'include_dirs': [
361 '..'
362 ],
363 'dependencies': [
364 '../gin/gin.gyp:gin',
365 'mojo_system',
366 ],
367 'export_dependent_settings': [
368 '../gin/gin.gyp:gin',
369 ],
370 'sources': [
371 'public/bindings/js/core.cc',
372 'public/bindings/js/core.h',
373 'public/bindings/js/handle.cc',
374 'public/bindings/js/handle.h',
375 'public/bindings/js/mojo.cc',
376 'public/bindings/js/mojo.h',
377 'public/bindings/js/runner_delegate.cc',
378 'public/bindings/js/runner_delegate.h',
379 ],
380 },
381 {
382 'target_name': 'mojo_js_bindings_unittests',
383 'type': 'executable',
384 'dependencies': [
385 '../base/base.gyp:run_all_unittests',
386 '../gin/gin.gyp:gin_test',
387 'mojo_js_bindings',
388 ],
389 'sources': [
390 '../gin/test/run_all_unittests.cc',
391 'public/bindings/js/test/harness.cc',
392 ],
393 },
357 { 394 {
358 'target_name': 'native_viewport', 395 'target_name': 'native_viewport',
359 'type': 'static_library', 396 'type': 'static_library',
360 'dependencies': [ 397 'dependencies': [
361 '../base/base.gyp:base', 398 '../base/base.gyp:base',
362 '../gpu/gpu.gyp:command_buffer_service', 399 '../gpu/gpu.gyp:command_buffer_service',
363 '../gpu/gpu.gyp:gles2_implementation', 400 '../gpu/gpu.gyp:gles2_implementation',
364 '../ui/events/events.gyp:events', 401 '../ui/events/events.gyp:events',
365 '../ui/gfx/gfx.gyp:gfx', 402 '../ui/gfx/gfx.gyp:gfx',
366 '../ui/gl/gl.gyp:gl', 403 '../ui/gl/gl.gyp:gl',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 502 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
466 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 503 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
467 'native_lib_target': 'libmojo_shell', 504 'native_lib_target': 'libmojo_shell',
468 }, 505 },
469 'includes': [ '../build/java_apk.gypi' ], 506 'includes': [ '../build/java_apk.gypi' ],
470 } 507 }
471 ], 508 ],
472 }], 509 }],
473 ], 510 ],
474 } 511 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698