diff options
author | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-14 22:33:09 +0000 |
---|---|---|
committer | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-14 22:33:09 +0000 |
commit | 20611ddb5952aebc42b4167c7fa067dc6ab049b5 (patch) | |
tree | 473beeed3226f432256696979eaded5b16b2f731 /ppapi | |
parent | 719ce089c9ac840947831c933881db4237d7a588 (diff) | |
download | chromium_src-20611ddb5952aebc42b4167c7fa067dc6ab049b5.zip chromium_src-20611ddb5952aebc42b4167c7fa067dc6ab049b5.tar.gz chromium_src-20611ddb5952aebc42b4167c7fa067dc6ab049b5.tar.bz2 |
Add check_tls test on nacl_irt to Gyp
This new test would have caught issue nativeclient:3028 at build time.
BUG= http://code.google.com/p/nativeclient/issues/detail?id=3028
TEST= gyp target nacl_irt_tls_check
R=bradnelson@google.com,mseaborn@chromium.org
Review URL: https://codereview.chromium.org/10914238
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/irt_test.gyp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ppapi/native_client/irt_test.gyp b/ppapi/native_client/irt_test.gyp new file mode 100644 index 0000000..2054605 --- /dev/null +++ b/ppapi/native_client/irt_test.gyp @@ -0,0 +1,18 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'conditions': [ + ['disable_nacl==0 and disable_nacl_untrusted==0', { + 'variables': { + 'irt_test_nexe': '', + 'irt_test_dep': 'native_client.gyp:nacl_irt', + }, + 'includes': [ + '../../native_client/build/common.gypi', + '../../native_client/src/untrusted/irt/check_tls.gypi', + ], + }], + ], +} |