OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'ppapi_example', | 8 'target_name': 'ppapi_example', |
9 'dependencies': [ | 9 'dependencies': [ |
10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'tests/test_directory_reader.cc', | 87 'tests/test_directory_reader.cc', |
88 'tests/test_directory_reader.h', | 88 'tests/test_directory_reader.h', |
89 'tests/test_file_io.cc', | 89 'tests/test_file_io.cc', |
90 'tests/test_file_io.h', | 90 'tests/test_file_io.h', |
91 'tests/test_file_ref.cc', | 91 'tests/test_file_ref.cc', |
92 'tests/test_file_ref.h', | 92 'tests/test_file_ref.h', |
93 'tests/test_file_system.cc', | 93 'tests/test_file_system.cc', |
94 'tests/test_file_system.h', | 94 'tests/test_file_system.h', |
95 'tests/test_graphics_2d.cc', | 95 'tests/test_graphics_2d.cc', |
96 'tests/test_graphics_2d.h', | 96 'tests/test_graphics_2d.h', |
| 97 'tests/test_graphics_3d.cc', |
| 98 'tests/test_graphics_3d.h', |
97 'tests/test_image_data.cc', | 99 'tests/test_image_data.cc', |
98 'tests/test_image_data.h', | 100 'tests/test_image_data.h', |
99 'tests/test_memory.cc', | 101 'tests/test_memory.cc', |
100 'tests/test_memory.h', | 102 'tests/test_memory.h', |
101 'tests/test_paint_aggregator.cc', | 103 'tests/test_paint_aggregator.cc', |
102 'tests/test_paint_aggregator.h', | 104 'tests/test_paint_aggregator.h', |
103 'tests/test_post_message.cc', | 105 'tests/test_post_message.cc', |
104 'tests/test_post_message.h', | 106 'tests/test_post_message.h', |
105 'tests/test_query_policy.cc', | 107 'tests/test_query_policy.cc', |
106 'tests/test_query_policy.h', | 108 'tests/test_query_policy.h', |
(...skipping 15 matching lines...) Expand all Loading... |
122 | 124 |
123 # Deprecated test cases. | 125 # Deprecated test cases. |
124 'tests/test_instance_deprecated.cc', | 126 'tests/test_instance_deprecated.cc', |
125 'tests/test_instance_deprecated.h', | 127 'tests/test_instance_deprecated.h', |
126 'tests/test_var_deprecated.cc', | 128 'tests/test_var_deprecated.cc', |
127 'tests/test_var_deprecated.h', | 129 'tests/test_var_deprecated.h', |
128 ], | 130 ], |
129 'dependencies': [ | 131 'dependencies': [ |
130 'ppapi.gyp:ppapi_cpp' | 132 'ppapi.gyp:ppapi_cpp' |
131 ], | 133 ], |
| 134 'run_as': { |
| 135 'action': [ |
| 136 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
| 137 '--enable-pepper-testing', |
| 138 '--enable-accelerated-plugins', |
| 139 '--register-pepper-plugins=$(TargetPath);application/x-ppapi-tests', |
| 140 'file://$(ProjectDir)/tests/test_case.html?testcase=', |
| 141 ], |
| 142 }, |
132 'conditions': [ | 143 'conditions': [ |
133 ['OS=="win"', { | 144 ['OS=="win"', { |
134 'defines': [ | 145 'defines': [ |
135 '_CRT_SECURE_NO_DEPRECATE', | 146 '_CRT_SECURE_NO_DEPRECATE', |
136 '_CRT_NONSTDC_NO_WARNINGS', | 147 '_CRT_NONSTDC_NO_WARNINGS', |
137 '_CRT_NONSTDC_NO_DEPRECATE', | 148 '_CRT_NONSTDC_NO_DEPRECATE', |
138 '_SCL_SECURE_NO_DEPRECATE', | 149 '_SCL_SECURE_NO_DEPRECATE', |
139 ], | 150 ], |
140 }], | 151 }], |
141 ['OS=="mac"', { | 152 ['OS=="mac"', { |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 ], | 355 ], |
345 'sources': [ | 356 'sources': [ |
346 'examples/gles2/gles2.cc', | 357 'examples/gles2/gles2.cc', |
347 'examples/gles2/testdata.h', | 358 'examples/gles2/testdata.h', |
348 ], | 359 ], |
349 }, | 360 }, |
350 ], | 361 ], |
351 }] | 362 }] |
352 ] | 363 ] |
353 } | 364 } |
OLD | NEW |