| OLD | NEW |
| 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2011 The Native Client 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 'variables': { | 6 'variables': { |
| 7 'common_sources': [ | 7 'common_sources': [ |
| 8 'array_ppapi.cc', | |
| 9 'browser_interface.cc', | |
| 10 'desc_based_handle.cc', | |
| 11 'file_downloader.cc', | 8 'file_downloader.cc', |
| 12 'json_manifest.cc', | 9 'json_manifest.cc', |
| 13 'method_map.cc', | |
| 14 'module_ppapi.cc', | 10 'module_ppapi.cc', |
| 15 'nacl_subprocess.cc', | 11 'nacl_subprocess.cc', |
| 16 'nexe_arch.cc', | 12 'nexe_arch.cc', |
| 17 'plugin.cc', | 13 'plugin.cc', |
| 18 'pnacl_coordinator.cc', | 14 'pnacl_coordinator.cc', |
| 19 'pnacl_resources.cc', | 15 'pnacl_resources.cc', |
| 20 'scriptable_handle.cc', | 16 'scriptable_plugin.cc', |
| 21 'service_runtime.cc', | 17 'service_runtime.cc', |
| 22 'srpc_client.cc', | 18 'srpc_client.cc', |
| 19 'srpc_params.cc', |
| 23 'string_encoding.cc', | 20 'string_encoding.cc', |
| 24 'utility.cc', | 21 'utility.cc', |
| 25 'var_utils.cc', | |
| 26 ], | 22 ], |
| 27 # Append the arch-specific ISA code to common_sources. | 23 # Append the arch-specific ISA code to common_sources. |
| 28 'conditions': [ | 24 'conditions': [ |
| 29 # Note: this test assumes that if this is not an ARM build, then this is | 25 # Note: this test assumes that if this is not an ARM build, then this is |
| 30 # is an x86 build. This is because |target_arch| for x86 can be one of a | 26 # is an x86 build. This is because |target_arch| for x86 can be one of a |
| 31 # number of values (x64, ia32, etc.). | 27 # number of values (x64, ia32, etc.). |
| 32 ['target_arch=="arm"', { | 28 ['target_arch=="arm"', { |
| 33 'common_sources': [ | 29 'common_sources': [ |
| 34 'arch_arm/sandbox_isa.cc', | 30 'arch_arm/sandbox_isa.cc', |
| 35 ], | 31 ], |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'link_settings': { | 96 'link_settings': { |
| 101 'libraries': [ | 97 'libraries': [ |
| 102 '-lgdi32.lib', | 98 '-lgdi32.lib', |
| 103 '-luser32.lib', | 99 '-luser32.lib', |
| 104 ], | 100 ], |
| 105 }, | 101 }, |
| 106 }], | 102 }], |
| 107 ], | 103 ], |
| 108 }, | 104 }, |
| 109 } | 105 } |
| OLD | NEW |