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

Side by Side Diff: mojo/mojo.gyp

Issue 65943002: Add a basic Mojo app that initializes V8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove base dependency 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/apps/js/v8_environment.cc ('k') | no next file » | 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 {
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 'sample_app', 25 'sample_app',
25 'mojo_bindings', 26 'mojo_bindings',
26 'mojo_bindings_test', 27 'mojo_bindings_test',
27 'native_viewport', 28 'native_viewport',
28 ], 29 ],
29 }, 30 },
30 { 31 {
31 'target_name': 'mojo_public_test_support', 32 'target_name': 'mojo_public_test_support',
32 'type': 'static_library', 33 'type': 'static_library',
33 'dependencies': [ 34 'dependencies': [
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'type': 'static_library', 263 'type': 'static_library',
263 'dependencies': [ 264 'dependencies': [
264 'mojo_system' 265 'mojo_system'
265 ], 266 ],
266 'sources': [ 267 'sources': [
267 'public/utility/scoped_handle.cc', 268 'public/utility/scoped_handle.cc',
268 'public/utility/scoped_handle.h', 269 'public/utility/scoped_handle.h',
269 ], 270 ],
270 }, 271 },
271 { 272 {
273 'target_name': 'mojo_js',
274 'type': 'shared_library',
275 'include_dirs': [
276 '..'
277 ],
278 'dependencies': [
279 '../v8/tools/gyp/v8.gyp:v8',
280 ],
281 'sources': [
282 'apps/js/main.cc',
283 'apps/js/v8_environment.cc',
284 'apps/js/v8_environment.h',
285 ],
286 },
287 {
272 'target_name': 'sample_app', 288 'target_name': 'sample_app',
273 'type': 'shared_library', 289 'type': 'shared_library',
274 'dependencies': [ 290 'dependencies': [
275 '../ui/gl/gl.gyp:gl', 291 '../ui/gl/gl.gyp:gl',
276 'mojo_system', 292 'mojo_system',
277 ], 293 ],
278 'sources': [ 294 'sources': [
279 'examples/sample_app/sample_app.cc', 295 'examples/sample_app/sample_app.cc',
280 'examples/sample_app/spinning_cube.cc', 296 'examples/sample_app/spinning_cube.cc',
281 'examples/sample_app/spinning_cube.h', 297 'examples/sample_app/spinning_cube.h',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 449 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
434 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 450 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
435 'native_lib_target': 'libmojo_shell', 451 'native_lib_target': 'libmojo_shell',
436 }, 452 },
437 'includes': [ '../build/java_apk.gypi' ], 453 'includes': [ '../build/java_apk.gypi' ],
438 } 454 }
439 ], 455 ],
440 }], 456 }],
441 ], 457 ],
442 } 458 }
OLDNEW
« no previous file with comments | « mojo/apps/js/v8_environment.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698