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

Side by Side Diff: tools/gyp/configurations.gypi

Issue 539573003: Adds support for building arm64 Android. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/build.py ('k') | tools/gyp/configurations_android.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 Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'common_gcc_warning_flags': [ 7 'common_gcc_warning_flags': [
8 '-Wall', 8 '-Wall',
9 '-Wextra', # Also known as -W. 9 '-Wextra', # Also known as -W.
10 '-Wno-unused-parameter', 10 '-Wno-unused-parameter',
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 352
353 'ReleaseAndroidARM': { 353 'ReleaseAndroidARM': {
354 'inherit_from': [ 354 'inherit_from': [
355 'Dart_Base', 'Dart_arm_Base', 'Dart_Release', 355 'Dart_Base', 'Dart_arm_Base', 'Dart_Release',
356 'Dart_Android_Base', 356 'Dart_Android_Base',
357 'Dart_Android_arm_Base', 357 'Dart_Android_arm_Base',
358 'Dart_Android_Release', 358 'Dart_Android_Release',
359 ], 359 ],
360 }, 360 },
361 361
362 'DebugAndroidARM64': {
363 'inherit_from': [
364 'Dart_Base', 'Dart_arm64_Base', 'Dart_Debug',
365 'Dart_Android_Base',
366 'Dart_Android_arm64_Base',
367 'Dart_Android_Debug',
368 ],
369 },
370
371 'ReleaseAndroidARM64': {
372 'inherit_from': [
373 'Dart_Base', 'Dart_arm64_Base', 'Dart_Release',
374 'Dart_Android_Base',
375 'Dart_Android_arm64_Base',
376 'Dart_Android_Release',
377 ],
378 },
379
362 # These targets assume that target_arch is passed in explicitly 380 # These targets assume that target_arch is passed in explicitly
363 # by the containing project (e.g., chromium). 381 # by the containing project (e.g., chromium).
364 'Debug': { 382 'Debug': {
365 'inherit_from': ['Debug<(chrome_target_os)<(dart_target_arch)'] 383 'inherit_from': ['Debug<(chrome_target_os)<(dart_target_arch)']
366 }, 384 },
367 385
368 'Release': { 386 'Release': {
369 'inherit_from': ['Release<(chrome_target_os)<(dart_target_arch)'] 387 'inherit_from': ['Release<(chrome_target_os)<(dart_target_arch)']
370 }, 388 },
371 389
372 'conditions': [ 390 'conditions': [
373 # On Windows ninja generator has hardcorded configuration naming 391 # On Windows ninja generator has hardcorded configuration naming
374 # patterns and it expects that x64 configurations are named smth_x64. 392 # patterns and it expects that x64 configurations are named smth_x64.
375 # This is a workaround for the crash that these expectations cause. 393 # This is a workaround for the crash that these expectations cause.
376 [ 'OS=="win" and GENERATOR=="ninja"', { 394 [ 'OS=="win" and GENERATOR=="ninja"', {
377 'DebugX64_x64': { 395 'DebugX64_x64': {
378 'inherit_from': [ 'DebugX64' ] 396 'inherit_from': [ 'DebugX64' ]
379 }, 397 },
380 398
381 'ReleaseX64_x64': { 399 'ReleaseX64_x64': {
382 'inherit_from': [ 'ReleaseX64' ] 400 'inherit_from': [ 'ReleaseX64' ]
383 }, 401 },
384 }], 402 }],
385 ], 403 ],
386 }, 404 },
387 }, 405 },
388 } 406 }
OLDNEW
« no previous file with comments | « tools/build.py ('k') | tools/gyp/configurations_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698