OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |