Chromium Code Reviews| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 90 ], | 90 ], |
| 91 'defines': [ | 91 'defines': [ |
| 92 'IPC_IMPLEMENTATION', | 92 'IPC_IMPLEMENTATION', |
| 93 ], | 93 ], |
| 94 'include_dirs': [ | 94 'include_dirs': [ |
| 95 '..', | 95 '..', |
| 96 ], | 96 ], |
| 97 'target_conditions': [ | 97 'target_conditions': [ |
| 98 ['>(nacl_untrusted_build)==1', { | 98 ['>(nacl_untrusted_build)==1', { |
| 99 'sources!': [ | 99 'sources!': [ |
| 100 'ipc_channel.cc', | |
|
Tom Sepez
2015/07/30 00:35:47
ditto
erikchen
2015/07/30 01:38:19
Yes, but it's no longer relevant now that I moved
| |
| 101 'ipc_channel_posix.cc', | 100 'ipc_channel_posix.cc', |
| 102 'unix_domain_socket_util.cc', | 101 'unix_domain_socket_util.cc', |
| 103 ], | 102 ], |
| 104 }], | 103 }], |
| 105 ['OS == "win" or OS == "ios"', { | 104 ['OS == "win" or OS == "ios"', { |
| 106 'sources!': [ | 105 'sources!': [ |
| 107 'unix_domain_socket_util.cc', | 106 'unix_domain_socket_util.cc', |
| 108 ], | 107 ], |
| 109 }], | 108 }], |
| 110 ], | 109 ], |
| 111 }], | 110 }], |
| 112 ], | 111 ], |
| 113 }, | 112 }, |
| 114 } | 113 } |
| OLD | NEW |