| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 'build_newlib': 1, | 437 'build_newlib': 1, |
| 438 'include_dirs': [ | 438 'include_dirs': [ |
| 439 'lib/gl/include', | 439 'lib/gl/include', |
| 440 '..', | 440 '..', |
| 441 ], | 441 ], |
| 442 'link_flags': [ | 442 'link_flags': [ |
| 443 '-lppapi_cpp', | 443 '-lppapi_cpp', |
| 444 '-lppapi', | 444 '-lppapi', |
| 445 ], | 445 ], |
| 446 'extra_deps64': [ | 446 'extra_deps64': [ |
| 447 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppapi_cpp.a', | 447 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', |
| 448 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppapi.a', | 448 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', |
| 449 ], | 449 ], |
| 450 'extra_deps32': [ | 450 'extra_deps32': [ |
| 451 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppapi_cpp.a', | 451 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_cpp.a', |
| 452 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppapi.a', | 452 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi.a', |
| 453 ], | 453 ], |
| 454 'sources': [ | 454 'sources': [ |
| 455 # Common test files | 455 # Common test files |
| 456 'tests/test_case.cc', | 456 'tests/test_case.cc', |
| 457 'tests/test_utils.cc', | 457 'tests/test_utils.cc', |
| 458 'tests/testing_instance.cc', | 458 'tests/testing_instance.cc', |
| 459 | 459 |
| 460 # Compile-time tests | 460 # Compile-time tests |
| 461 'tests/test_c_includes.c', | 461 'tests/test_c_includes.c', |
| 462 'tests/test_cpp_includes.cc', | 462 'tests/test_cpp_includes.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 # Var_deprecated fails in TestPassReference, and we probably won't | 506 # Var_deprecated fails in TestPassReference, and we probably won't |
| 507 # fix it. | 507 # fix it. |
| 508 #'tests/test_var_deprecated.cc' | 508 #'tests/test_var_deprecated.cc' |
| 509 ], | 509 ], |
| 510 }, | 510 }, |
| 511 }, | 511 }, |
| 512 ], | 512 ], |
| 513 }], | 513 }], |
| 514 ], | 514 ], |
| 515 } | 515 } |
| OLD | NEW |