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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'nacl_scons_dir': '../../third_party/native_client/googleclient/native_clien
t/scons-out', | 8 'nacl_scons_dir': '../../third_party/native_client/googleclient/native_clien
t/scons-out', |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 16 matching lines...) Expand all Loading... |
27 'action_name': 'build_nacl', | 27 'action_name': 'build_nacl', |
28 'inputs' : [ | 28 'inputs' : [ |
29 'build_nacl.py', | 29 'build_nacl.py', |
30 ], | 30 ], |
31 'outputs': [ | 31 'outputs': [ |
32 '<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', | 32 '<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', |
33 '<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', | 33 '<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', |
34 'dummy_file_that_never_gets_built_so_scons_always_runs', | 34 'dummy_file_that_never_gets_built_so_scons_always_runs', |
35 ], | 35 ], |
36 'action': [ | 36 'action': [ |
37 'python', | 37 'C:/Python24/python.exe', |
38 '<@(_inputs)', | 38 '<@(_inputs)', |
39 '--output="<(nacl_output_dir)"', | 39 '--output="<(nacl_output_dir)"', |
40 '--configuration="<(CONFIGURATION)"', | 40 '--configuration="<(CONFIGURATION)"', |
41 '--platform=<(OS)', | 41 '--platform=<(OS)', |
42 '<@(nacl_libs)', | 42 '<@(nacl_libs)', |
43 ], | 43 ], |
44 }, | 44 }, |
45 ], | 45 ], |
46 'direct_dependent_settings': { | 46 'all_dependent_settings': { |
47 'include_dirs': [ | 47 'include_dirs': [ |
48 '<(nacldir)', | 48 '<(nacldir)', |
49 ], | 49 ], |
50 'libraries': [ | 50 'libraries': [ |
51 '-l<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', | 51 '-l<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', |
52 '-l<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', | 52 '-l<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', |
53 ], | 53 ], |
54 }, | 54 }, |
55 }, | 55 }, |
56 ], | 56 ], |
57 } | 57 } |
OLD | NEW |