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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |