Index: build/android/v8_external_startup_data_arch_suffix.gypi |
diff --git a/build/android/v8_external_startup_data_arch_suffix.gypi b/build/android/v8_external_startup_data_arch_suffix.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9d06aeefea4a3c0677c0adacc57708c1bf27567a |
--- /dev/null |
+++ b/build/android/v8_external_startup_data_arch_suffix.gypi |
@@ -0,0 +1,19 @@ |
+# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'variables': { |
+ 'arch_suffix': '<(arch_suffix)', |
+ 'variables': { |
+ 'conditions': [ |
+ ['OS=="android" and (target_arch=="arm" or target_arch=="ia32" or target_arch=="mipsel")', { |
jbudorick
2015/10/19 22:57:23
What's your reasoning for doing this as two separa
michaelbai
2015/10/20 00:10:10
This code was copied, it might useful when target_
|
+ 'arch_suffix': '32', |
+ }], |
+ ['OS=="android" and (target_arch=="arm64" or target_arch=="x64" or target_arch=="mips64el")', { |
+ 'arch_suffix': '64', |
+ }], |
+ ], |
+ } |
+ } |
+} |