diff options
author | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 22:55:00 +0000 |
---|---|---|
committer | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 22:55:00 +0000 |
commit | 227b06711ccc640bb61568ee81a452744ece6f94 (patch) | |
tree | 2692ecc706ecf2b28f8d03c576aa4be147dce50c /ppapi/ppapi.gyp | |
parent | a983c1c744fcc936c84128355e5e51cb111ca41c (diff) | |
download | chromium_src-227b06711ccc640bb61568ee81a452744ece6f94.zip chromium_src-227b06711ccc640bb61568ee81a452744ece6f94.tar.gz chromium_src-227b06711ccc640bb61568ee81a452744ece6f94.tar.bz2 |
- Add a script which:
--- Checks that all source files are in ppapi.gyp and vice-versa
--- Generates test_c_includes.c and test_cc_includes.cc
- Removes tests/test_image_data, which appears to be obsolete
I want to make the script a gyp action, but it didn't work on Windows last I tried. If desired, I can fix that in this CL, or I can make it automated later.
BUG=63527,59791,53451
TEST=None; improves build-time checking
Review URL: http://codereview.chromium.org/5190004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66833 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi.gyp')
-rw-r--r-- | ppapi/ppapi.gyp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ppapi/ppapi.gyp b/ppapi/ppapi.gyp index ea81f98..b9fb347 100644 --- a/ppapi/ppapi.gyp +++ b/ppapi/ppapi.gyp @@ -478,6 +478,21 @@ 'product_extension': 'plugin', }], ], +# TODO(dmichael): Figure out what is wrong with the script on Windows and add +# it as an automated action. +# 'actions': [ +# { +# 'action_name': 'generate_ppapi_include_tests', +# 'inputs': [], +# 'outputs': [ +# 'tests/test_c_includes.c', +# 'tests/test_cc_includes.cc', +# ], +# 'action': [ +# '<!@(python generate_ppapi_include_tests.py)', +# ], +# }, +# ], }, { 'target_name': 'ppapi_proxy', |