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 'conditions': [ | 5 'conditions': [ |
6 ['android_must_copy_system_libraries == 1', { | 6 ['android_must_copy_system_libraries == 1', { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 # These libraries from the Android ndk are required to be packaged wit
h | 9 # These libraries from the Android ndk are required to be packaged wit
h |
10 # any APK that is built with them. build/java_apk.gypi expects any | 10 # any APK that is built with them. build/java_apk.gypi expects any |
(...skipping 24 matching lines...) Expand all Loading... |
35 'gyp/util/build_device.py', | 35 'gyp/util/build_device.py', |
36 'gyp/get_device_configuration.py', | 36 'gyp/get_device_configuration.py', |
37 ], | 37 ], |
38 'outputs': [ | 38 'outputs': [ |
39 '<(build_device_config_path)', | 39 '<(build_device_config_path)', |
40 '<(build_device_config_path).fake', | 40 '<(build_device_config_path).fake', |
41 ], | 41 ], |
42 'action': [ | 42 'action': [ |
43 'python', 'gyp/get_device_configuration.py', | 43 'python', 'gyp/get_device_configuration.py', |
44 '--output=<(build_device_config_path)', | 44 '--output=<(build_device_config_path)', |
| 45 '--output-directory=<(PRODUCT_DIR)', |
45 ], | 46 ], |
46 } | 47 } |
47 ], | 48 ], |
48 }, | 49 }, |
49 { | 50 { |
50 # Target for creating common output build directories. Creating output | 51 # Target for creating common output build directories. Creating output |
51 # dirs beforehand ensures that build scripts can assume these folders to | 52 # dirs beforehand ensures that build scripts can assume these folders to |
52 # exist and there are no race conditions resulting from build scripts | 53 # exist and there are no race conditions resulting from build scripts |
53 # trying to create these directories. | 54 # trying to create these directories. |
54 # The build/java.gypi target depends on this target. | 55 # The build/java.gypi target depends on this target. |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 'action': [ | 103 'action': [ |
103 'python', 'gyp/find_sun_tools_jar.py', | 104 'python', 'gyp/find_sun_tools_jar.py', |
104 '--output', '<(found_jar_path)', | 105 '--output', '<(found_jar_path)', |
105 ], | 106 ], |
106 }, | 107 }, |
107 ], | 108 ], |
108 }, # sun_tools_java | 109 }, # sun_tools_java |
109 ] | 110 ] |
110 } | 111 } |
111 | 112 |
OLD | NEW |