| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 18 matching lines...) Expand all Loading... |
| 29 'ipc_message_macros.h', | 29 'ipc_message_macros.h', |
| 30 'ipc_message_utils.cc', | 30 'ipc_message_utils.cc', |
| 31 'ipc_message_utils.h', | 31 'ipc_message_utils.h', |
| 32 'ipc_platform_file.h', | 32 'ipc_platform_file.h', |
| 33 'ipc_switches.cc', | 33 'ipc_switches.cc', |
| 34 'ipc_switches.h', | 34 'ipc_switches.h', |
| 35 'ipc_sync_channel.cc', | 35 'ipc_sync_channel.cc', |
| 36 'ipc_sync_channel.h', | 36 'ipc_sync_channel.h', |
| 37 'ipc_sync_message.cc', | 37 'ipc_sync_message.cc', |
| 38 'ipc_sync_message.h', | 38 'ipc_sync_message.h', |
| 39 'ipc_sync_message_filter.cc', |
| 40 'ipc_sync_message_filter.h', |
| 39 ], | 41 ], |
| 40 'include_dirs': [ | 42 'include_dirs': [ |
| 41 '..', | 43 '..', |
| 42 ], | 44 ], |
| 43 }], | 45 }], |
| 44 ], | 46 ], |
| 45 }, | 47 }, |
| 46 'targets': [ | 48 'targets': [ |
| 47 { | 49 { |
| 48 'target_name': 'ipc', | 50 'target_name': 'ipc', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 ], | 92 ], |
| 91 }], | 93 }], |
| 92 ], | 94 ], |
| 93 } | 95 } |
| 94 | 96 |
| 95 # Local Variables: | 97 # Local Variables: |
| 96 # tab-width:2 | 98 # tab-width:2 |
| 97 # indent-tabs-mode:nil | 99 # indent-tabs-mode:nil |
| 98 # End: | 100 # End: |
| 99 # vim: set expandtab tabstop=2 shiftwidth=2: | 101 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |