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

Side by Side Diff: ipc/ipc.gyp

Issue 12431017: Revert 187554 "Implement IPC::ChannelFactory, a class that accep..." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ipc/ipc.gypi » ('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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'ipc_fuzzing_tests.cc', 51 'ipc_fuzzing_tests.cc',
52 'ipc_message_unittest.cc', 52 'ipc_message_unittest.cc',
53 'ipc_message_utils_unittest.cc', 53 'ipc_message_utils_unittest.cc',
54 'ipc_send_fds_test.cc', 54 'ipc_send_fds_test.cc',
55 'ipc_sync_channel_unittest.cc', 55 'ipc_sync_channel_unittest.cc',
56 'ipc_sync_message_unittest.cc', 56 'ipc_sync_message_unittest.cc',
57 'ipc_sync_message_unittest.h', 57 'ipc_sync_message_unittest.h',
58 'ipc_test_base.cc', 58 'ipc_test_base.cc',
59 'ipc_test_base.h', 59 'ipc_test_base.h',
60 'sync_socket_unittest.cc', 60 'sync_socket_unittest.cc',
61 'unix_domain_socket_util_unittest.cc',
62 ], 61 ],
63 'conditions': [ 62 'conditions': [
64 ['toolkit_uses_gtk == 1', { 63 ['toolkit_uses_gtk == 1', {
65 'dependencies': [ 64 'dependencies': [
66 '../build/linux/system.gyp:gtk', 65 '../build/linux/system.gyp:gtk',
67 ], 66 ],
68 }], 67 }],
69 ['OS == "win" or OS == "ios"', {
70 'sources!': [
71 'unix_domain_socket_util_unittest.cc',
72 ],
73 }],
74 ['OS == "android" and gtest_target_type == "shared_library"', { 68 ['OS == "android" and gtest_target_type == "shared_library"', {
75 'dependencies': [ 69 'dependencies': [
76 '../testing/android/native_test.gyp:native_test_native_code', 70 '../testing/android/native_test.gyp:native_test_native_code',
77 ], 71 ],
78 }], 72 }],
79 ['os_posix == 1 and OS != "mac" and OS != "android"', { 73 ['os_posix == 1 and OS != "mac" and OS != "android"', {
80 'conditions': [ 74 'conditions': [
81 ['linux_use_tcmalloc==1', { 75 ['linux_use_tcmalloc==1', {
82 'dependencies': [ 76 'dependencies': [
83 '../base/allocator/allocator.gyp:allocator', 77 '../base/allocator/allocator.gyp:allocator',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 ], 183 ],
190 'variables': { 184 'variables': {
191 'test_suite_name': 'ipc_tests', 185 'test_suite_name': 'ipc_tests',
192 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests <(SHARED_LIB_SUFFIX)', 186 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests <(SHARED_LIB_SUFFIX)',
193 }, 187 },
194 'includes': [ '../build/apk_test.gypi' ], 188 'includes': [ '../build/apk_test.gypi' ],
195 }], 189 }],
196 }], 190 }],
197 ], 191 ],
198 } 192 }
OLDNEW
« no previous file with comments | « no previous file | ipc/ipc.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698