| 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 { |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 'type': 'shared_library', | 299 'type': 'shared_library', |
| 300 'dependencies': [ | 300 'dependencies': [ |
| 301 '../base/base.gyp:base', | 301 '../base/base.gyp:base', |
| 302 '../gin/gin.gyp:gin', | 302 '../gin/gin.gyp:gin', |
| 303 'hello_world_service', | 303 'hello_world_service', |
| 304 'mojo_common_lib', | 304 'mojo_common_lib', |
| 305 'mojo_js_bindings', | 305 'mojo_js_bindings', |
| 306 'mojo_system', | 306 'mojo_system', |
| 307 ], | 307 ], |
| 308 'sources': [ | 308 'sources': [ |
| 309 'apps/js/bootstrap.cc', | |
| 310 'apps/js/bootstrap.h', | |
| 311 'apps/js/main.cc', | 309 'apps/js/main.cc', |
| 312 'apps/js/mojo_runner_delegate.cc', | 310 'apps/js/mojo_runner_delegate.cc', |
| 313 'apps/js/mojo_runner_delegate.h', | 311 'apps/js/mojo_runner_delegate.h', |
| 312 'apps/js/threading.cc', |
| 313 'apps/js/threading.h', |
| 314 ], | 314 ], |
| 315 }, | 315 }, |
| 316 { | 316 { |
| 317 'target_name': 'sample_app', | 317 'target_name': 'sample_app', |
| 318 'type': 'shared_library', | 318 'type': 'shared_library', |
| 319 'dependencies': [ | 319 'dependencies': [ |
| 320 '../base/base.gyp:base', | 320 '../base/base.gyp:base', |
| 321 '../ui/gl/gl.gyp:gl', | 321 '../ui/gl/gl.gyp:gl', |
| 322 'hello_world_service', | 322 'hello_world_service', |
| 323 'mojo_common_lib', | 323 'mojo_common_lib', |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 556 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 557 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 557 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 558 'native_lib_target': 'libmojo_shell', | 558 'native_lib_target': 'libmojo_shell', |
| 559 }, | 559 }, |
| 560 'includes': [ '../build/java_apk.gypi' ], | 560 'includes': [ '../build/java_apk.gypi' ], |
| 561 } | 561 } |
| 562 ], | 562 ], |
| 563 }], | 563 }], |
| 564 ], | 564 ], |
| 565 } | 565 } |
| OLD | NEW |