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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ], | 59 ], |
60 'defines': [ | 60 'defines': [ |
61 'IPC_IMPLEMENTATION', | 61 'IPC_IMPLEMENTATION', |
62 ], | 62 ], |
63 'include_dirs': [ | 63 'include_dirs': [ |
64 '..', | 64 '..', |
65 ], | 65 ], |
66 'target_conditions': [ | 66 'target_conditions': [ |
67 ['>(nacl_untrusted_build)==1', { | 67 ['>(nacl_untrusted_build)==1', { |
68 'sources!': [ | 68 'sources!': [ |
| 69 'ipc_channel.cc', |
69 'ipc_channel_posix.cc', | 70 'ipc_channel_posix.cc', |
70 ], | 71 ], |
71 }], | 72 }], |
72 ], | 73 ], |
73 }], | 74 }], |
74 ], | 75 ], |
75 }, | 76 }, |
76 } | 77 } |
OLD | NEW |