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

Unified Diff: webrtc/system_wrappers/system_wrappers_tests.gyp

Issue 2340773003: GYP: Remove targets inside include_tests==1 that are converted to GN. (Closed)
Patch Set: Removed more and all isolate files. 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 | « webrtc/stats/stats.gyp ('k') | webrtc/system_wrappers/system_wrappers_unittests.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/system_wrappers/system_wrappers_tests.gyp
diff --git a/webrtc/system_wrappers/system_wrappers_tests.gyp b/webrtc/system_wrappers/system_wrappers_tests.gyp
deleted file mode 100644
index c4453c3e2aafb22a8df22d39e70bcac6405c7fbc..0000000000000000000000000000000000000000
--- a/webrtc/system_wrappers/system_wrappers_tests.gyp
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
-#
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file in the root of the source
-# tree. An additional intellectual property rights grant can be found
-# in the file PATENTS. All contributing project authors may
-# be found in the AUTHORS file in the root of the source tree.
-
-{
- 'includes': ['../build/common.gypi',],
- 'targets': [
- {
- 'target_name': 'system_wrappers_unittests',
- 'type': '<(gtest_target_type)',
- 'dependencies': [
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
- '<(webrtc_root)/test/test.gyp:test_support_main',
- ],
- 'sources': [
- 'source/aligned_array_unittest.cc',
- 'source/aligned_malloc_unittest.cc',
- 'source/clock_unittest.cc',
- 'source/condition_variable_unittest.cc',
- 'source/critical_section_unittest.cc',
- 'source/logging_unittest.cc',
- 'source/data_log_helpers_unittest.cc',
- 'source/data_log_c_helpers_unittest.c',
- 'source/data_log_c_helpers_unittest.h',
- 'source/event_timer_posix_unittest.cc',
- 'source/metrics_default_unittest.cc',
- 'source/metrics_unittest.cc',
- 'source/ntp_time_unittest.cc',
- 'source/rtp_to_ntp_unittest.cc',
- 'source/stringize_macros_unittest.cc',
- 'source/stl_util_unittest.cc',
- ],
- 'conditions': [
- ['enable_data_logging==1', {
- 'sources': [ 'source/data_log_unittest.cc', ],
- }, {
- 'sources': [ 'source/data_log_unittest_disabled.cc', ],
- }],
- ['OS=="android"', {
- 'dependencies': [
- '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
- ],
- }],
- ],
- # Disable warnings to enable Win64 build, issue 1323.
- 'msvs_disabled_warnings': [
- 4267, # size_t to int truncation.
- ],
- },
- ],
- 'conditions': [
- ['OS=="android"', {
- 'targets': [
- {
- 'target_name': 'system_wrappers_unittests_apk_target',
- 'type': 'none',
- 'dependencies': [
- '<(android_tests_path):system_wrappers_unittests_apk',
- ],
- },
- ],
- 'conditions': [
- ['test_isolation_mode != "noop"',
- {
- 'targets': [
- {
- 'target_name': 'system_wrappers_unittests_apk_run',
- 'type': 'none',
- 'dependencies': [
- '<(android_tests_path):system_wrappers_unittests_apk',
- ],
- 'includes': [
- '../build/isolate.gypi',
- ],
- 'sources': [
- 'system_wrappers_unittests_apk.isolate',
- ],
- },
- ],
- },
- ],
- ],
- }], # OS=="android"
- ['test_isolation_mode != "noop"', {
- 'targets': [
- {
- 'target_name': 'system_wrappers_unittests_run',
- 'type': 'none',
- 'dependencies': [
- 'system_wrappers_unittests',
- ],
- 'includes': [
- '../build/isolate.gypi',
- ],
- 'sources': [
- 'system_wrappers_unittests.isolate',
- ],
- },
- ],
- }],
- ],
-}
-
« no previous file with comments | « webrtc/stats/stats.gyp ('k') | webrtc/system_wrappers/system_wrappers_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698