Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 8673007: Build libppapi_cpp.a under SHARED_INTERMEDIATE_DIR, so ppapi_tests can find it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/ppapi_cpp.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_cpp.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698