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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
237 | 237 |
238 # Deprecated test cases. | 238 # Deprecated test cases. |
239 'tests/test_instance_deprecated.cc', | 239 'tests/test_instance_deprecated.cc', |
240 'tests/test_instance_deprecated.h', | 240 'tests/test_instance_deprecated.h', |
241 'tests/test_var_deprecated.cc', | 241 'tests/test_var_deprecated.cc', |
242 'tests/test_var_deprecated.h', | 242 'tests/test_var_deprecated.h', |
243 ], | 243 ], |
244 'dependencies': [ | 244 'dependencies': [ |
245 'ppapi.gyp:ppapi_cpp' | 245 'ppapi.gyp:ppapi_cpp' |
246 ], | 246 ], |
247 'include_dirs': [ | |
Ami GONE FROM CHROMIUM
2011/05/24 17:55:07
What's with these changes?
| |
248 'lib/gl/include', | |
249 ], | |
247 'conditions': [ | 250 'conditions': [ |
248 ['OS=="win"', { | 251 ['OS=="win"', { |
249 'defines': [ | 252 'defines': [ |
250 '_CRT_SECURE_NO_DEPRECATE', | 253 '_CRT_SECURE_NO_DEPRECATE', |
251 '_CRT_NONSTDC_NO_WARNINGS', | 254 '_CRT_NONSTDC_NO_WARNINGS', |
252 '_CRT_NONSTDC_NO_DEPRECATE', | 255 '_CRT_NONSTDC_NO_DEPRECATE', |
253 '_SCL_SECURE_NO_DEPRECATE', | 256 '_SCL_SECURE_NO_DEPRECATE', |
254 ], | 257 ], |
255 }], | 258 }], |
256 ['OS=="mac"', { | 259 ['OS=="mac"', { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
305 'proxy/plugin_dispatcher_unittest.cc', | 308 'proxy/plugin_dispatcher_unittest.cc', |
306 'proxy/plugin_resource_tracker_unittest.cc', | 309 'proxy/plugin_resource_tracker_unittest.cc', |
307 'proxy/plugin_var_tracker_unittest.cc', | 310 'proxy/plugin_var_tracker_unittest.cc', |
308 'proxy/ppapi_proxy_test.cc', | 311 'proxy/ppapi_proxy_test.cc', |
309 'proxy/ppapi_proxy_test.h', | 312 'proxy/ppapi_proxy_test.h', |
310 'proxy/serialized_var_unittest.cc', | 313 'proxy/serialized_var_unittest.cc', |
311 ], | 314 ], |
312 }, | 315 }, |
313 ], | 316 ], |
314 } | 317 } |
OLD | NEW |