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

Side by Side Diff: ipc/ipc.gyp

Issue 1613523002: Remove ipc_channel_unittests from Android build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove MAYBE_ prefix Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « ipc/BUILD.gn ('k') | ipc/ipc_channel_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ipc.gypi', 10 'ipc.gypi',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'sync_socket_unittest.cc', 74 'sync_socket_unittest.cc',
75 'unix_domain_socket_util_unittest.cc', 75 'unix_domain_socket_util_unittest.cc',
76 ], 76 ],
77 'conditions': [ 77 'conditions': [
78 ['OS == "win" or OS == "ios"', { 78 ['OS == "win" or OS == "ios"', {
79 'sources!': [ 79 'sources!': [
80 'unix_domain_socket_util_unittest.cc', 80 'unix_domain_socket_util_unittest.cc',
81 ], 81 ],
82 }], 82 }],
83 ['OS == "android"', { 83 ['OS == "android"', {
84 'sources!': [
85 # These multiprocess tests don't work on Android.
86 'ipc_channel_unittest.cc',
87 ],
84 'dependencies': [ 88 'dependencies': [
85 '../testing/android/native_test.gyp:native_test_native_code', 89 '../testing/android/native_test.gyp:native_test_native_code',
86 ], 90 ],
87 }], 91 }],
88 ['os_posix == 1 and OS != "mac" and OS != "android"', { 92 ['os_posix == 1 and OS != "mac" and OS != "android"', {
89 'conditions': [ 93 'conditions': [
90 ['use_allocator!="none"', { 94 ['use_allocator!="none"', {
91 'dependencies': [ 95 'dependencies': [
92 '../base/allocator/allocator.gyp:allocator', 96 '../base/allocator/allocator.gyp:allocator',
93 ], 97 ],
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 '../build/isolate.gypi', 252 '../build/isolate.gypi',
249 ], 253 ],
250 'sources': [ 254 'sources': [
251 'ipc_tests.isolate', 255 'ipc_tests.isolate',
252 ], 256 ],
253 }, 257 },
254 ], 258 ],
255 }], 259 }],
256 ], 260 ],
257 } 261 }
OLDNEW
« no previous file with comments | « ipc/BUILD.gn ('k') | ipc/ipc_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698