| 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 'nacl_win64_target': 0, | 8 'nacl_win64_target': 0, |
| 9 'ppapi_ipc_target': 0, | 9 'ppapi_ipc_target': 0, |
| 10 }, | 10 }, |
| 11 'target_conditions': [ | 11 'target_conditions': [ |
| 12 # This part is shared between the targets defined below. | 12 # This part is shared between the targets defined below. |
| 13 ['ppapi_ipc_target==1', { | 13 ['ppapi_ipc_target==1', { |
| 14 'sources': [ | 14 'sources': [ |
| 15 'proxy/handle_converter.cc', | 15 'proxy/nacl_message_scanner.cc', |
| 16 'proxy/handle_converter.h', | 16 'proxy/nacl_message_scanner.h', |
| 17 'proxy/ppapi_messages.cc', | 17 'proxy/ppapi_messages.cc', |
| 18 'proxy/ppapi_messages.h', | 18 'proxy/ppapi_messages.h', |
| 19 'proxy/ppapi_param_traits.cc', | 19 'proxy/ppapi_param_traits.cc', |
| 20 'proxy/ppapi_param_traits.h', | 20 'proxy/ppapi_param_traits.h', |
| 21 'proxy/raw_var_data.cc', | 21 'proxy/raw_var_data.cc', |
| 22 'proxy/raw_var_data.h', | 22 'proxy/raw_var_data.h', |
| 23 'proxy/resource_message_params.cc', | 23 'proxy/resource_message_params.cc', |
| 24 'proxy/resource_message_params.h', | 24 'proxy/resource_message_params.h', |
| 25 'proxy/serialized_flash_menu.cc', | 25 'proxy/serialized_flash_menu.cc', |
| 26 'proxy/serialized_flash_menu.h', | 26 'proxy/serialized_flash_menu.h', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 39 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { | 39 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { |
| 40 'sources!': [ | 40 'sources!': [ |
| 41 'proxy/serialized_flash_menu.cc', | 41 'proxy/serialized_flash_menu.cc', |
| 42 ], | 42 ], |
| 43 }], | 43 }], |
| 44 ], | 44 ], |
| 45 }], | 45 }], |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 } | 48 } |
| OLD | NEW |