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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 # 'tests/test_c_includes.c', | 73 # 'tests/test_c_includes.c', |
74 # 'tests/test_cc_includes.cc', | 74 # 'tests/test_cc_includes.cc', |
75 # ], | 75 # ], |
76 # 'action': [ | 76 # 'action': [ |
77 # '<!@(python generate_ppapi_include_tests.py)', | 77 # '<!@(python generate_ppapi_include_tests.py)', |
78 # ], | 78 # ], |
79 # }, | 79 # }, |
80 # ], | 80 # ], |
81 }, | 81 }, |
82 { | 82 { |
| 83 # GN version: //ppapi:power_saver_test_plugin |
| 84 'target_name': 'power_saver_test_plugin', |
| 85 'type': 'loadable_module', |
| 86 'sources': [ |
| 87 'tests/power_saver_test_plugin.cc', |
| 88 'tests/test_utils.cc', |
| 89 ], |
| 90 'dependencies': [ |
| 91 'ppapi.gyp:ppapi_cpp', |
| 92 'ppapi_internal.gyp:ppapi_shared', |
| 93 ], |
| 94 'conditions': [ |
| 95 ['OS=="mac"', { |
| 96 'mac_bundle': 1, |
| 97 'product_name': 'power_saver_test_plugin', |
| 98 'product_extension': 'plugin', |
| 99 }], |
| 100 ], |
| 101 }, |
| 102 { |
83 # GN version: //ppapi/proxy:test_support | 103 # GN version: //ppapi/proxy:test_support |
84 # //ppapi/shared_impl:test_support | 104 # //ppapi/shared_impl:test_support |
85 'target_name': 'ppapi_unittest_shared', | 105 'target_name': 'ppapi_unittest_shared', |
86 'type': 'static_library', | 106 'type': 'static_library', |
87 'dependencies': [ | 107 'dependencies': [ |
88 'ppapi_proxy', | 108 'ppapi_proxy', |
89 'ppapi_shared', | 109 'ppapi_shared', |
90 '../base/base.gyp:test_support_base', | 110 '../base/base.gyp:test_support_base', |
91 '../ipc/ipc.gyp:ipc', | 111 '../ipc/ipc.gyp:ipc', |
92 '../ipc/ipc.gyp:test_support_ipc', | 112 '../ipc/ipc.gyp:test_support_ipc', |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 'sources': [ | 646 'sources': [ |
627 'examples/compositor/compositor.cc', | 647 'examples/compositor/compositor.cc', |
628 'examples/compositor/spinning_cube.cc', | 648 'examples/compositor/spinning_cube.cc', |
629 'examples/compositor/spinning_cube.h', | 649 'examples/compositor/spinning_cube.h', |
630 ], | 650 ], |
631 }, | 651 }, |
632 # Adding a new PPAPI example? Don't forget to update the GN build. | 652 # Adding a new PPAPI example? Don't forget to update the GN build. |
633 # See //ppapi/examples/BUILD.gn | 653 # See //ppapi/examples/BUILD.gn |
634 ], | 654 ], |
635 } | 655 } |
OLD | NEW |