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

Side by Side Diff: ipc/ipc.gypi

Issue 883093003: IPC::Message Refactoring: Move POSIX specific bits to PlatformFileAttachment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ['>(nacl_untrusted_build)==1', { 81 ['>(nacl_untrusted_build)==1', {
82 'sources!': [ 82 'sources!': [
83 'ipc_channel.cc', 83 'ipc_channel.cc',
84 'ipc_channel_posix.cc', 84 'ipc_channel_posix.cc',
85 'unix_domain_socket_util.cc', 85 'unix_domain_socket_util.cc',
86 ], 86 ],
87 }], 87 }],
88 ['OS == "win" or OS == "ios"', { 88 ['OS == "win" or OS == "ios"', {
89 'sources!': [ 89 'sources!': [
90 'unix_domain_socket_util.cc', 90 'unix_domain_socket_util.cc',
91 'ipc_platform_file_attachment.cc',
92 'ipc_platform_file_attachment.h',
91 ], 93 ],
92 }], 94 }],
93 ], 95 ],
94 }], 96 }],
95 ], 97 ],
96 }, 98 },
97 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698