diff options
author | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-14 14:22:42 +0000 |
---|---|---|
committer | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-14 14:24:39 +0000 |
commit | 3de013990b3fa79ff720374d4af0a551e0a2f819 (patch) | |
tree | f185d937934f6b3f040b2e88f5d93758397c0281 /testing/gtest.gypi | |
parent | 646a59f71ce328a37b07d545fde68fea8758ec76 (diff) | |
download | chromium_src-3de013990b3fa79ff720374d4af0a551e0a2f819.zip chromium_src-3de013990b3fa79ff720374d4af0a551e0a2f819.tar.gz chromium_src-3de013990b3fa79ff720374d4af0a551e0a2f819.tar.bz2 |
Create NaCl build of gtest.
Originally landed as 289216 and reverted as 289223 due to a GYP bug.
BUG=401761
Review URL: https://codereview.chromium.org/401453002
Cr-Commit-Position: refs/heads/master@{#289558}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289558 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing/gtest.gypi')
-rw-r--r-- | testing/gtest.gypi | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/gtest.gypi b/testing/gtest.gypi new file mode 100644 index 0000000..ca12e1b --- /dev/null +++ b/testing/gtest.gypi @@ -0,0 +1,41 @@ +# Copyright 2014 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. + +{ + 'variables': { + 'gtest_sources': [ + 'gtest/include/gtest/gtest-death-test.h', + 'gtest/include/gtest/gtest-message.h', + 'gtest/include/gtest/gtest-param-test.h', + 'gtest/include/gtest/gtest-printers.h', + 'gtest/include/gtest/gtest-spi.h', + 'gtest/include/gtest/gtest-test-part.h', + 'gtest/include/gtest/gtest-typed-test.h', + 'gtest/include/gtest/gtest.h', + 'gtest/include/gtest/gtest_pred_impl.h', + 'gtest/include/gtest/gtest_prod.h', + 'gtest/include/gtest/internal/gtest-death-test-internal.h', + 'gtest/include/gtest/internal/gtest-filepath.h', + 'gtest/include/gtest/internal/gtest-internal.h', + 'gtest/include/gtest/internal/gtest-linked_ptr.h', + 'gtest/include/gtest/internal/gtest-param-util-generated.h', + 'gtest/include/gtest/internal/gtest-param-util.h', + 'gtest/include/gtest/internal/gtest-port.h', + 'gtest/include/gtest/internal/gtest-string.h', + 'gtest/include/gtest/internal/gtest-tuple.h', + 'gtest/include/gtest/internal/gtest-type-util.h', + 'gtest/src/gtest-death-test.cc', + 'gtest/src/gtest-filepath.cc', + 'gtest/src/gtest-internal-inl.h', + 'gtest/src/gtest-port.cc', + 'gtest/src/gtest-printers.cc', + 'gtest/src/gtest-test-part.cc', + 'gtest/src/gtest-typed-test.cc', + 'gtest/src/gtest.cc', + 'multiprocess_func_list.cc', + 'multiprocess_func_list.h', + 'platform_test.h', + ], + }, +} |