| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import fnmatch | 5 import fnmatch |
| 6 import glob | 6 import glob |
| 7 import os | 7 import os |
| 8 import shutil | 8 import shutil |
| 9 import sys | 9 import sys |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'DEPTH': constants.DIR_SOURCE_ROOT, | 21 'DEPTH': constants.DIR_SOURCE_ROOT, |
| 22 'PRODUCT_DIR': constants.GetOutDirectory(), | 22 'PRODUCT_DIR': constants.GetOutDirectory(), |
| 23 } | 23 } |
| 24 | 24 |
| 25 | 25 |
| 26 def DefaultConfigVariables(): | 26 def DefaultConfigVariables(): |
| 27 return { | 27 return { |
| 28 'CONFIGURATION_NAME': constants.GetBuildType(), | 28 'CONFIGURATION_NAME': constants.GetBuildType(), |
| 29 'OS': 'android', | 29 'OS': 'android', |
| 30 'asan': '0', | 30 'asan': '0', |
| 31 'branding': 'Chromium', |
| 31 'chromeos': '0', | 32 'chromeos': '0', |
| 32 'component': 'static_library', | 33 'component': 'static_library', |
| 34 'enable_pepper_cdms': '0', |
| 33 'enable_plugins': '0', | 35 'enable_plugins': '0', |
| 34 'fastbuild': '0', | 36 'fastbuild': '0', |
| 35 'icu_use_data_file_flag': '1', | 37 'icu_use_data_file_flag': '1', |
| 36 'lsan': '0', | 38 'lsan': '0', |
| 37 'msan': '0', | 39 'msan': '0', |
| 38 # TODO(maruel): This may not always be true. | 40 # TODO(maruel): This may not always be true. |
| 39 'target_arch': 'arm', | 41 'target_arch': 'arm', |
| 40 'tsan': '0', | 42 'tsan': '0', |
| 41 'use_custom_libcxx': '0', | 43 'use_custom_libcxx': '0', |
| 42 'use_instrumented_libraries': '0', | 44 'use_instrumented_libraries': '0', |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 shutil.move(os.path.join(root, filename), paks_dir) | 162 shutil.move(os.path.join(root, filename), paks_dir) |
| 161 | 163 |
| 162 # Move everything in PRODUCT_DIR to top level. | 164 # Move everything in PRODUCT_DIR to top level. |
| 163 deps_product_dir = os.path.join(deps_out_dir, constants.GetBuildType()) | 165 deps_product_dir = os.path.join(deps_out_dir, constants.GetBuildType()) |
| 164 if os.path.isdir(deps_product_dir): | 166 if os.path.isdir(deps_product_dir): |
| 165 for p in os.listdir(deps_product_dir): | 167 for p in os.listdir(deps_product_dir): |
| 166 shutil.move(os.path.join(deps_product_dir, p), self._isolate_deps_dir) | 168 shutil.move(os.path.join(deps_product_dir, p), self._isolate_deps_dir) |
| 167 os.rmdir(deps_product_dir) | 169 os.rmdir(deps_product_dir) |
| 168 os.rmdir(deps_out_dir) | 170 os.rmdir(deps_out_dir) |
| 169 | 171 |
| OLD | NEW |