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

Side by Side Diff: base/base.gyp

Issue 11503013: android: Pass CPU properties from browser to renderer process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unused Java native method + fix comment Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « base/android/java/src/org/chromium/base/CpuFeatures.java ('k') | base/base.gypi » ('j') | no next file with comments »
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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'libraries': [ 134 'libraries': [
135 '-llog', 135 '-llog',
136 ], 136 ],
137 }, 137 },
138 'defines': [ 138 'defines': [
139 'USE_SYMBOLIZE', 139 'USE_SYMBOLIZE',
140 ], 140 ],
141 'sources!': [ 141 'sources!': [
142 'debug/stack_trace_posix.cc', 142 'debug/stack_trace_posix.cc',
143 ], 143 ],
144 'includes': [
145 '../build/android/cpufeatures.gypi',
146 ],
144 }], 147 }],
145 ['OS == "android" and _toolset == "target" and android_build_type == 0', { 148 ['OS == "android" and _toolset == "target" and android_build_type == 0', {
146 'dependencies': [ 149 'dependencies': [
147 'base_java', 150 'base_java',
148 ], 151 ],
149 }], 152 }],
150 ['os_bsd==1', { 153 ['os_bsd==1', {
151 'include_dirs': [ 154 'include_dirs': [
152 '/usr/local/include', 155 '/usr/local/include',
153 ], 156 ],
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 }, 1033 },
1031 ], 1034 ],
1032 }], 1035 }],
1033 ['OS == "android"', { 1036 ['OS == "android"', {
1034 'targets': [ 1037 'targets': [
1035 { 1038 {
1036 'target_name': 'base_jni_headers', 1039 'target_name': 'base_jni_headers',
1037 'type': 'none', 1040 'type': 'none',
1038 'sources': [ 1041 'sources': [
1039 'android/java/src/org/chromium/base/BuildInfo.java', 1042 'android/java/src/org/chromium/base/BuildInfo.java',
1043 'android/java/src/org/chromium/base/CpuFeatures.java',
1040 'android/java/src/org/chromium/base/LocaleUtils.java', 1044 'android/java/src/org/chromium/base/LocaleUtils.java',
1041 'android/java/src/org/chromium/base/PathService.java', 1045 'android/java/src/org/chromium/base/PathService.java',
1042 'android/java/src/org/chromium/base/PathUtils.java', 1046 'android/java/src/org/chromium/base/PathUtils.java',
1043 'android/java/src/org/chromium/base/SystemMessageHandler.java', 1047 'android/java/src/org/chromium/base/SystemMessageHandler.java',
1044 'android/java/src/org/chromium/base/SystemMonitor.java', 1048 'android/java/src/org/chromium/base/SystemMonitor.java',
1045 ], 1049 ],
1046 'variables': { 1050 'variables': {
1047 'jni_gen_dir': 'base', 1051 'jni_gen_dir': 'base',
1048 }, 1052 },
1049 'includes': [ '../build/jni_generator.gypi' ], 1053 'includes': [ '../build/jni_generator.gypi' ],
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
1123 'base_unittests.isolate', 1127 'base_unittests.isolate',
1124 ], 1128 ],
1125 'sources': [ 1129 'sources': [
1126 'base_unittests.isolate', 1130 'base_unittests.isolate',
1127 ], 1131 ],
1128 }, 1132 },
1129 ], 1133 ],
1130 }], 1134 }],
1131 ], 1135 ],
1132 } 1136 }
OLDNEW
« no previous file with comments | « base/android/java/src/org/chromium/base/CpuFeatures.java ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698