OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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_cpp' | 10 'ppapi_cpp' |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 # { | 137 # { |
138 # 'target_name': 'ppapi_example_paint_manager', | 138 # 'target_name': 'ppapi_example_paint_manager', |
139 # 'dependencies': [ | 139 # 'dependencies': [ |
140 # 'ppapi_example_skeleton', | 140 # 'ppapi_example_skeleton', |
141 # ], | 141 # ], |
142 # 'sources': [ | 142 # 'sources': [ |
143 # 'examples/2d/paint_manager_example.cc', | 143 # 'examples/2d/paint_manager_example.cc', |
144 # ], | 144 # ], |
145 # }, | 145 # }, |
146 # { | 146 # { |
| 147 # 'target_name': 'ppapi_example_post_message', |
| 148 # 'dependencies': [ |
| 149 # 'ppapi_example_skeleton', |
| 150 # ], |
| 151 # 'sources': [ |
| 152 # 'examples/scripting/post_message.cc', |
| 153 # ], |
| 154 # }, |
| 155 # { |
| 156 # 'target_name': 'ppapi_example_reentrant_example', |
| 157 # 'dependencies': [ |
| 158 # 'ppapi_example_skeleton', |
| 159 # ], |
| 160 # 'sources': [ |
| 161 # 'examples/scripting/reentrant_example.cc', |
| 162 # ], |
| 163 # }, |
| 164 # { |
147 # 'target_name': 'ppapi_example_scroll', | 165 # 'target_name': 'ppapi_example_scroll', |
148 # 'dependencies': [ | 166 # 'dependencies': [ |
149 # 'ppapi_example_skeleton', | 167 # 'ppapi_example_skeleton', |
150 # ], | 168 # ], |
151 # 'sources': [ | 169 # 'sources': [ |
152 # 'examples/2d/scroll.cc', | 170 # 'examples/2d/scroll.cc', |
153 # ], | 171 # ], |
154 # }, | 172 # }, |
155 # { | 173 # { |
156 # 'target_name': 'ppapi_example_simple_font', | 174 # 'target_name': 'ppapi_example_simple_font', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'tests/test_file_ref.cc', | 209 'tests/test_file_ref.cc', |
192 'tests/test_file_ref.h', | 210 'tests/test_file_ref.h', |
193 'tests/test_file_system.cc', | 211 'tests/test_file_system.cc', |
194 'tests/test_file_system.h', | 212 'tests/test_file_system.h', |
195 'tests/test_graphics_2d.cc', | 213 'tests/test_graphics_2d.cc', |
196 'tests/test_graphics_2d.h', | 214 'tests/test_graphics_2d.h', |
197 'tests/test_image_data.cc', | 215 'tests/test_image_data.cc', |
198 'tests/test_image_data.h', | 216 'tests/test_image_data.h', |
199 'tests/test_paint_aggregator.cc', | 217 'tests/test_paint_aggregator.cc', |
200 'tests/test_paint_aggregator.h', | 218 'tests/test_paint_aggregator.h', |
| 219 'tests/test_post_message.cc', |
| 220 'tests/test_post_message.h', |
201 'tests/test_scrollbar.cc', | 221 'tests/test_scrollbar.cc', |
202 'tests/test_scrollbar.h', | 222 'tests/test_scrollbar.h', |
203 'tests/test_struct_sizes.c', | 223 'tests/test_struct_sizes.c', |
204 'tests/test_transport.cc', | 224 'tests/test_transport.cc', |
205 'tests/test_transport.h', | 225 'tests/test_transport.h', |
206 'tests/test_url_loader.cc', | 226 'tests/test_url_loader.cc', |
207 'tests/test_url_loader.h', | 227 'tests/test_url_loader.h', |
208 'tests/test_url_util.cc', | 228 'tests/test_url_util.cc', |
209 'tests/test_url_util.h', | 229 'tests/test_url_util.h', |
210 'tests/test_utils.cc', | 230 'tests/test_utils.cc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 'proxy/plugin_dispatcher_unittest.cc', | 295 'proxy/plugin_dispatcher_unittest.cc', |
276 'proxy/plugin_resource_tracker_unittest.cc', | 296 'proxy/plugin_resource_tracker_unittest.cc', |
277 'proxy/plugin_var_tracker_unittest.cc', | 297 'proxy/plugin_var_tracker_unittest.cc', |
278 'proxy/ppapi_proxy_test.cc', | 298 'proxy/ppapi_proxy_test.cc', |
279 'proxy/ppapi_proxy_test.h', | 299 'proxy/ppapi_proxy_test.h', |
280 'proxy/serialized_var_unittest.cc', | 300 'proxy/serialized_var_unittest.cc', |
281 ], | 301 ], |
282 }, | 302 }, |
283 ], | 303 ], |
284 } | 304 } |
OLD | NEW |