| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'mojo_sample_app', | 8 'target_name': 'mojo_sample_app', |
| 9 'type': 'shared_library', | 9 'type': 'shared_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'includes': [ 'build/package_app.gypi' ], | 81 'includes': [ 'build/package_app.gypi' ], |
| 82 }, | 82 }, |
| 83 { | 83 { |
| 84 'target_name': 'mojo_pepper_container_app', | 84 'target_name': 'mojo_pepper_container_app', |
| 85 'type': 'shared_library', | 85 'type': 'shared_library', |
| 86 'dependencies': [ | 86 'dependencies': [ |
| 87 '../base/base.gyp:base', | 87 '../base/base.gyp:base', |
| 88 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 88 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 89 '../ppapi/ppapi.gyp:ppapi_c', | 89 '../ppapi/ppapi.gyp:ppapi_c', |
| 90 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', | 90 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', |
| 91 'mojo_common_lib', |
| 91 'mojo_environment_chromium', | 92 'mojo_environment_chromium', |
| 92 'mojo_gles2', | 93 'mojo_gles2', |
| 93 'mojo_native_viewport_bindings', | 94 'mojo_native_viewport_bindings', |
| 94 'mojo_shell_client', | 95 'mojo_shell_client', |
| 95 'mojo_system', | 96 'mojo_system', |
| 96 ], | 97 ], |
| 97 'defines': [ | 98 'defines': [ |
| 98 # We don't really want to export. We could change how | 99 # We don't really want to export. We could change how |
| 99 # ppapi_{shared,thunk}_export.h are defined to avoid this. | 100 # ppapi_{shared,thunk}_export.h are defined to avoid this. |
| 100 'PPAPI_SHARED_IMPLEMENTATION', | 101 'PPAPI_SHARED_IMPLEMENTATION', |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 'target_name': 'package_mojo_view_manager', | 319 'target_name': 'package_mojo_view_manager', |
| 319 'variables': { | 320 'variables': { |
| 320 'app_name': 'mojo_view_manager', | 321 'app_name': 'mojo_view_manager', |
| 321 }, | 322 }, |
| 322 'includes': [ 'build/package_app.gypi' ], | 323 'includes': [ 'build/package_app.gypi' ], |
| 323 }, | 324 }, |
| 324 ], | 325 ], |
| 325 }], | 326 }], |
| 326 ], | 327 ], |
| 327 } | 328 } |
| OLD | NEW |