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

Side by Side Diff: ppapi/ppapi.gyp

Issue 5190004: This accomplishes a few things:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
OLDNEW
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 { 6 {
7 'variables': { 7 'variables': {
8 'chromium_code': 1, # Use higher warning level. 8 'chromium_code': 1, # Use higher warning level.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 '_CRT_NONSTDC_NO_DEPRECATE', 471 '_CRT_NONSTDC_NO_DEPRECATE',
472 '_SCL_SECURE_NO_DEPRECATE', 472 '_SCL_SECURE_NO_DEPRECATE',
473 ], 473 ],
474 }], 474 }],
475 ['OS=="mac"', { 475 ['OS=="mac"', {
476 'mac_bundle': 1, 476 'mac_bundle': 1,
477 'product_name': 'ppapi_tests', 477 'product_name': 'ppapi_tests',
478 'product_extension': 'plugin', 478 'product_extension': 'plugin',
479 }], 479 }],
480 ], 480 ],
481 # TODO(dmichael): Figure out what is wrong with the script on Windows and add
482 # it as an automated action.
483 # 'actions': [
484 # {
485 # 'action_name': 'generate_ppapi_include_tests',
486 # 'inputs': [],
487 # 'outputs': [
488 # 'tests/test_c_includes.c',
489 # 'tests/test_cc_includes.cc',
490 # ],
491 # 'action': [
492 # '<!@(python generate_ppapi_include_tests.py)',
493 # ],
494 # },
495 # ],
481 }, 496 },
482 { 497 {
483 'target_name': 'ppapi_proxy', 498 'target_name': 'ppapi_proxy',
484 'type': 'static_library', 499 'type': 'static_library',
485 'dependencies': [ 500 'dependencies': [
486 '../ipc/ipc.gyp:ipc', 501 '../ipc/ipc.gyp:ipc',
487 'ppapi_c', 502 'ppapi_c',
488 ], 503 ],
489 'all_dependent_settings': { 504 'all_dependent_settings': {
490 'include_dirs': [ 505 'include_dirs': [
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 ['OS=="win"', { 584 ['OS=="win"', {
570 }], 585 }],
571 ['OS=="linux"', { 586 ['OS=="linux"', {
572 }], 587 }],
573 ['OS=="mac"', { 588 ['OS=="mac"', {
574 }] 589 }]
575 ], 590 ],
576 }, 591 },
577 ], 592 ],
578 } 593 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698