Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: build/android/v8_external_startup_data_arch_suffix.gypi

Issue 1400953002: Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build_overrides/v8.gni » ('j') | build_overrides/v8.gni » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'arch_suffix': '<(arch_suffix)',
8 'variables': {
9 'conditions': [
10 ['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_
11 'arch_suffix': '32',
12 }],
13 ['OS=="android" and (target_arch=="arm64" or target_arch=="x64" or targe t_arch=="mips64el")', {
14 'arch_suffix': '64',
15 }],
16 ],
17 }
18 }
19 }
OLDNEW
« no previous file with comments | « no previous file | build_overrides/v8.gni » ('j') | build_overrides/v8.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698