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