| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 ], | 224 ], |
| 225 'sources': [ | 225 'sources': [ |
| 226 'public/utility/scoped_handle.cc', | 226 'public/utility/scoped_handle.cc', |
| 227 'public/utility/scoped_handle.h', | 227 'public/utility/scoped_handle.h', |
| 228 ], | 228 ], |
| 229 }, | 229 }, |
| 230 { | 230 { |
| 231 'target_name': 'sample_app', | 231 'target_name': 'sample_app', |
| 232 'type': 'shared_library', | 232 'type': 'shared_library', |
| 233 'dependencies': [ | 233 'dependencies': [ |
| 234 '../ui/gl/gl.gyp:gl', |
| 234 'mojo_system', | 235 'mojo_system', |
| 235 ], | 236 ], |
| 236 'sources': [ | 237 'sources': [ |
| 237 'examples/sample_app/sample_app.cc', | 238 'examples/sample_app/sample_app.cc', |
| 239 'examples/sample_app/spinning_cube.cc', |
| 240 'examples/sample_app/spinning_cube.h', |
| 238 ], | 241 ], |
| 239 }, | 242 }, |
| 240 { | 243 { |
| 241 'target_name': 'mojo_bindings', | 244 'target_name': 'mojo_bindings', |
| 242 'type': 'static_library', | 245 'type': 'static_library', |
| 243 'include_dirs': [ | 246 'include_dirs': [ |
| 244 '..' | 247 '..' |
| 245 ], | 248 ], |
| 246 'sources': [ | 249 'sources': [ |
| 247 'public/bindings/lib/bindings.h', | 250 'public/bindings/lib/bindings.h', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 394 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 392 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 395 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 393 'native_lib_target': 'libmojo_shell', | 396 'native_lib_target': 'libmojo_shell', |
| 394 }, | 397 }, |
| 395 'includes': [ '../build/java_apk.gypi' ], | 398 'includes': [ '../build/java_apk.gypi' ], |
| 396 } | 399 } |
| 397 ], | 400 ], |
| 398 }], | 401 }], |
| 399 ], | 402 ], |
| 400 } | 403 } |
| OLD | NEW |