diff options
author | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 04:59:33 +0000 |
---|---|---|
committer | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 04:59:33 +0000 |
commit | 6d2e6685cbbb2f9c503ae88f12ca93bfb462aa49 (patch) | |
tree | 9bf18ad3b1899fa0f5ddd6f1705d217a809e589a /chrome/chrome.gyp | |
parent | 5cc72b5b8a3677e3e22536a4547f2e2ae743f4f1 (diff) | |
download | chromium_src-6d2e6685cbbb2f9c503ae88f12ca93bfb462aa49.zip chromium_src-6d2e6685cbbb2f9c503ae88f12ca93bfb462aa49.tar.gz chromium_src-6d2e6685cbbb2f9c503ae88f12ca93bfb462aa49.tar.bz2 |
This is a simple integration test that loads a simple nexe and verifies that Javascript can communicate with it. The required html, javascript and nexe files are checked in into the NaCl tree.
Review URL: http://codereview.chromium.org/272005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rwxr-xr-x | chrome/chrome.gyp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 3fa1905..c407296 100755 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -4087,6 +4087,66 @@ ], }, { + 'target_name': 'nacl_ui_tests', + 'type': 'executable', + 'msvs_guid': '43E2004F-CD62-4595-A8A6-31E9BFA1EE5E', + 'dependencies': [ + 'chrome', + 'browser', + 'debugger', + 'common', + 'chrome_resources', + 'chrome_strings', + 'syncapi', + 'test_support_ui', + '../base/base.gyp:base', + '../net/net.gyp:net', + '../build/temp_gyp/googleurl.gyp:googleurl', + '../skia/skia.gyp:skia', + '../testing/gtest.gyp:gtest', + '../third_party/icu/icu.gyp:icui18n', + '../third_party/icu/icu.gyp:icuuc', + '../third_party/libxml/libxml.gyp:libxml', + ], + 'include_dirs': [ + '..', + ], + 'sources': [ + 'test/nacl/nacl_test.cc', + ], + 'conditions': [ + # TODO(gregoryd): This test will run on Windows only at first. + # Refer to ui_tests target above if any problems appear when trying + # to enable it on other platforms. + ['OS=="win"', { + 'dependencies': [ + 'crash_service', # run time dependency + 'security_tests', # run time dependency + 'test_support_common', + '../google_update/google_update.gyp:google_update', + '../views/views.gyp:views', + # run time dependency + '../webkit/tools/test_shell/test_shell.gyp:npapi_test_plugin', + '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', + ], + 'link_settings': { + 'libraries': [ + '-lOleAcc.lib', + ], + }, + 'configurations': { + 'Debug': { + 'msvs_settings': { + 'VCLinkerTool': { + 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', + }, + }, + }, + }, + }], + ], + }, + { 'target_name': 'unit_tests', 'type': 'executable', 'msvs_guid': 'ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC', |