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

Unified Diff: testing/gtest_nacl.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/gtest.gypi ('k') | testing/iossim/iossim.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/gtest_nacl.gyp
diff --git a/testing/gtest_nacl.gyp b/testing/gtest_nacl.gyp
deleted file mode 100644
index 910c9e37890dfb8b221bfd36a8c211cb04c5448e..0000000000000000000000000000000000000000
--- a/testing/gtest_nacl.gyp
+++ /dev/null
@@ -1,83 +0,0 @@
-# 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': {
- 'chromium_code': 1,
- },
- 'includes': [
- '../build/common_untrusted.gypi',
- 'gtest.gypi',
- ],
- 'conditions': [
- ['disable_nacl==0 and disable_nacl_untrusted==0', {
- 'targets': [
- {
- 'target_name': 'gtest_nacl',
- 'type': 'none',
- 'variables': {
- 'nlib_target': 'libgtest_nacl.a',
- 'build_glibc': 0,
- 'build_newlib': 0,
- 'build_irt': 0,
- 'build_pnacl_newlib': 1,
- 'build_nonsfi_helper': 1,
- },
- 'sources': [
- '<@(gtest_sources)',
- ],
- 'include_dirs': [
- 'gtest',
- 'gtest/include',
- ],
- 'defines': [
- # In order to allow regex matches in gtest to be shared between
- # Windows and other systems, we tell gtest to always use it's
- # internal engine.
- 'GTEST_HAS_POSIX_RE=0',
- ],
- 'all_dependent_settings': {
- 'defines': [
- 'GTEST_HAS_POSIX_RE=0',
- ],
- 'link_flags': [
- '-lgtest_nacl',
- ],
- },
- 'direct_dependent_settings': {
- 'defines': [
- 'UNIT_TEST',
- ],
- 'include_dirs': [
- 'gtest/include', # So that gtest headers can find themselves.
- ],
- },
- },
- {
- 'target_name': 'gtest_main_nacl',
- 'type': 'none',
- 'variables': {
- 'nlib_target': 'libgtest_main_nacl.a',
- 'build_glibc': 0,
- 'build_newlib': 0,
- 'build_irt': 0,
- 'build_pnacl_newlib': 1,
- 'build_nonsfi_helper': 1,
- },
- 'dependencies': [
- 'gtest_nacl',
- ],
- 'sources': [
- 'gtest/src/gtest_main.cc',
- ],
- 'all_dependent_settings': {
- 'link_flags': [
- '-lgtest_main_nacl',
- ],
- },
- },
- ],
- }],
- ],
-}
« no previous file with comments | « testing/gtest.gypi ('k') | testing/iossim/iossim.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698