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

Side by Side Diff: base/base.gyp

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address later issues. Created 7 years, 3 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
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 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 'type': 'none', 1263 'type': 'none',
1264 'dependencies': [ 1264 'dependencies': [
1265 'base_java', 1265 'base_java',
1266 'base_java_test_support', 1266 'base_java_test_support',
1267 ], 1267 ],
1268 'variables': { 1268 'variables': {
1269 'java_in_dir': '../base/android/javatests', 1269 'java_in_dir': '../base/android/javatests',
1270 }, 1270 },
1271 'includes': [ '../build/java.gypi' ], 1271 'includes': [ '../build/java.gypi' ],
1272 }, 1272 },
1273 {
1274 'target_name': 'crazy_linker',
1275 'type': 'shared_library',
1276 'sources': [
1277 'android/linker/crazy_linker_jni.cc',
1278 ],
1279 'includes': [ '../third_party/crazy_linker/crazy_linker.gypi' ],
1280 },
1273 ], 1281 ],
1274 }], 1282 }],
1275 ['OS == "win"', { 1283 ['OS == "win"', {
1276 'targets': [ 1284 'targets': [
1277 { 1285 {
1278 'target_name': 'debug_message', 1286 'target_name': 'debug_message',
1279 'type': 'executable', 1287 'type': 'executable',
1280 'sources': [ 1288 'sources': [
1281 'debug_message.cc', 1289 'debug_message.cc',
1282 ], 1290 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 'base_unittests.isolate', 1332 'base_unittests.isolate',
1325 ], 1333 ],
1326 'sources': [ 1334 'sources': [
1327 'base_unittests.isolate', 1335 'base_unittests.isolate',
1328 ], 1336 ],
1329 }, 1337 },
1330 ], 1338 ],
1331 }], 1339 }],
1332 ], 1340 ],
1333 } 1341 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698