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/handle_converter.cc', |
16 'proxy/handle_converter.h', | 16 'proxy/handle_converter.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', |
| 22 'proxy/raw_var_data.h', |
21 'proxy/resource_message_params.cc', | 23 'proxy/resource_message_params.cc', |
22 'proxy/resource_message_params.h', | 24 'proxy/resource_message_params.h', |
23 'proxy/serialized_flash_menu.cc', | 25 'proxy/serialized_flash_menu.cc', |
24 'proxy/serialized_flash_menu.h', | 26 'proxy/serialized_flash_menu.h', |
25 'proxy/serialized_handle.cc', | 27 'proxy/serialized_handle.cc', |
26 'proxy/serialized_handle.h', | 28 'proxy/serialized_handle.h', |
27 'proxy/serialized_structs.cc', | 29 'proxy/serialized_structs.cc', |
28 'proxy/serialized_structs.h', | 30 'proxy/serialized_structs.h', |
29 'proxy/serialized_var.cc', | 31 'proxy/serialized_var.cc', |
30 'proxy/serialized_var.h', | 32 'proxy/serialized_var.h', |
31 'proxy/var_serialization_rules.h', | 33 'proxy/var_serialization_rules.h', |
32 ], | 34 ], |
33 'include_dirs': [ | 35 'include_dirs': [ |
34 '..', | 36 '..', |
35 ], | 37 ], |
36 'target_conditions': [ | 38 'target_conditions': [ |
37 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { | 39 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { |
38 'sources!': [ | 40 'sources!': [ |
39 'proxy/serialized_flash_menu.cc', | 41 'proxy/serialized_flash_menu.cc', |
40 ], | 42 ], |
41 }], | 43 }], |
42 ], | 44 ], |
43 }], | 45 }], |
44 ], | 46 ], |
45 }, | 47 }, |
46 } | 48 } |
OLD | NEW |