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

Side by Side Diff: ipc/ipc.gypi

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing windows build error Created 6 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 unified diff | Download patch
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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'ipc_target': 0, 8 'ipc_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ], 69 ],
70 'defines': [ 70 'defines': [
71 'IPC_IMPLEMENTATION', 71 'IPC_IMPLEMENTATION',
72 ], 72 ],
73 'include_dirs': [ 73 'include_dirs': [
74 '..', 74 '..',
75 ], 75 ],
76 'target_conditions': [ 76 'target_conditions': [
77 ['>(nacl_untrusted_build)==1', { 77 ['>(nacl_untrusted_build)==1', {
78 'sources!': [ 78 'sources!': [
79 'ipc_channel.cc',
80 'ipc_channel_posix.cc', 79 'ipc_channel_posix.cc',
81 'unix_domain_socket_util.cc', 80 'unix_domain_socket_util.cc',
82 ], 81 ],
83 }], 82 }],
84 ['OS == "win" or OS == "ios"', { 83 ['OS == "win" or OS == "ios"', {
85 'sources!': [ 84 'sources!': [
86 'unix_domain_socket_util.cc', 85 'unix_domain_socket_util.cc',
87 ], 86 ],
88 }], 87 }],
89 ], 88 ],
90 }], 89 }],
91 ], 90 ],
92 }, 91 },
93 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698