OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # GN version: //ppapi:ppapi_tests | 8 # GN version: //ppapi:ppapi_tests |
9 'target_name': 'ppapi_tests', | 9 'target_name': 'ppapi_tests', |
10 'type': 'loadable_module', | 10 'type': 'loadable_module', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 ], | 94 ], |
95 'conditions': [ | 95 'conditions': [ |
96 ['OS=="mac"', { | 96 ['OS=="mac"', { |
97 'mac_bundle': 1, | 97 'mac_bundle': 1, |
98 'product_name': 'power_saver_test_plugin', | 98 'product_name': 'power_saver_test_plugin', |
99 'product_extension': 'plugin', | 99 'product_extension': 'plugin', |
100 }], | 100 }], |
101 ], | 101 ], |
102 }, | 102 }, |
103 { | 103 { |
| 104 # GN version: //ppapi:blink_test_plugin |
| 105 'target_name': 'blink_test_plugin', |
| 106 'type': 'loadable_module', |
| 107 'sources': [ |
| 108 'tests/blink_test_plugin.cc', |
| 109 ], |
| 110 'dependencies': [ |
| 111 'ppapi.gyp:ppapi_cpp', |
| 112 'ppapi_internal.gyp:ppapi_shared', |
| 113 ], |
| 114 'conditions': [ |
| 115 ['OS=="mac"', { |
| 116 'mac_bundle': 1, |
| 117 'product_name': 'blink_test_plugin', |
| 118 'product_extension': 'plugin', |
| 119 }], |
| 120 ], |
| 121 }, |
| 122 { |
104 # GN version: //ppapi/proxy:test_support | 123 # GN version: //ppapi/proxy:test_support |
105 # //ppapi/shared_impl:test_support | 124 # //ppapi/shared_impl:test_support |
106 'target_name': 'ppapi_unittest_shared', | 125 'target_name': 'ppapi_unittest_shared', |
107 'type': 'static_library', | 126 'type': 'static_library', |
108 'dependencies': [ | 127 'dependencies': [ |
109 'ppapi_proxy', | 128 'ppapi_proxy', |
110 'ppapi_shared', | 129 'ppapi_shared', |
111 '../base/base.gyp:test_support_base', | 130 '../base/base.gyp:test_support_base', |
112 '../ipc/ipc.gyp:ipc', | 131 '../ipc/ipc.gyp:ipc', |
113 '../ipc/ipc.gyp:test_support_ipc', | 132 '../ipc/ipc.gyp:test_support_ipc', |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 'sources': [ | 666 'sources': [ |
648 'examples/compositor/compositor.cc', | 667 'examples/compositor/compositor.cc', |
649 'examples/compositor/spinning_cube.cc', | 668 'examples/compositor/spinning_cube.cc', |
650 'examples/compositor/spinning_cube.h', | 669 'examples/compositor/spinning_cube.h', |
651 ], | 670 ], |
652 }, | 671 }, |
653 # Adding a new PPAPI example? Don't forget to update the GN build. | 672 # Adding a new PPAPI example? Don't forget to update the GN build. |
654 # See //ppapi/examples/BUILD.gn | 673 # See //ppapi/examples/BUILD.gn |
655 ], | 674 ], |
656 } | 675 } |
OLD | NEW |