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

Side by Side Diff: base/base.gyp

Issue 14241008: [MIPS] Support to build libchromeview for MIPS-Android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 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 | base/debug/stack_trace_android.cc » ('j') | base/debug/stack_trace_android.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }], 127 }],
128 ], 128 ],
129 }], 129 }],
130 ['OS == "android" and _toolset == "target"', { 130 ['OS == "android" and _toolset == "target"', {
131 'conditions': [ 131 'conditions': [
132 ['target_arch == "ia32"', { 132 ['target_arch == "ia32"', {
133 'sources/': [ 133 'sources/': [
134 ['include', '^atomicops_internals_x86_gcc\\.cc$'], 134 ['include', '^atomicops_internals_x86_gcc\\.cc$'],
135 ], 135 ],
136 }], 136 }],
137 ['target_arch == "mipsel"', {
138 'sources/': [
139 ['include', '^atomicops_internals_mips_gcc\\.cc$'],
140 ],
141 }],
137 ], 142 ],
138 'dependencies': [ 143 'dependencies': [
139 'base_jni_headers', 144 'base_jni_headers',
140 'symbolize', 145 'symbolize',
141 '../third_party/ashmem/ashmem.gyp:ashmem', 146 '../third_party/ashmem/ashmem.gyp:ashmem',
142 '../third_party/icu/icu.gyp:icuuc', 147 '../third_party/icu/icu.gyp:icuuc',
143 ], 148 ],
144 'include_dirs': [ 149 'include_dirs': [
145 '<(SHARED_INTERMEDIATE_DIR)/base', 150 '<(SHARED_INTERMEDIATE_DIR)/base',
146 ], 151 ],
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 'base_unittests.isolate', 1228 'base_unittests.isolate',
1224 ], 1229 ],
1225 'sources': [ 1230 'sources': [
1226 'base_unittests.isolate', 1231 'base_unittests.isolate',
1227 ], 1232 ],
1228 }, 1233 },
1229 ], 1234 ],
1230 }], 1235 }],
1231 ], 1236 ],
1232 } 1237 }
OLDNEW
« no previous file with comments | « no previous file | base/debug/stack_trace_android.cc » ('j') | base/debug/stack_trace_android.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698