| OLD | NEW |
| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 | 380 |
| 381 'ReleaseSIMDBC': { | 381 'ReleaseSIMDBC': { |
| 382 'inherit_from': [ | 382 'inherit_from': [ |
| 383 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Release', | 383 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Release', |
| 384 'Dart_<(dart_target_os)_Base', | 384 'Dart_<(dart_target_os)_Base', |
| 385 'Dart_<(dart_target_os)_simdbc_Base', | 385 'Dart_<(dart_target_os)_simdbc_Base', |
| 386 'Dart_<(dart_target_os)_Release', | 386 'Dart_<(dart_target_os)_Release', |
| 387 ], | 387 ], |
| 388 }, | 388 }, |
| 389 | 389 |
| 390 'ProductSIMDBC': { |
| 391 'inherit_from': [ |
| 392 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Product', |
| 393 'Dart_<(dart_target_os)_Base', |
| 394 'Dart_<(dart_target_os)_simdbc_Base', |
| 395 'Dart_<(dart_target_os)_Product', |
| 396 ], |
| 397 }, |
| 398 |
| 390 'DebugSIMDBC64': { | 399 'DebugSIMDBC64': { |
| 391 'inherit_from': [ | 400 'inherit_from': [ |
| 392 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Debug', | 401 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Debug', |
| 393 'Dart_<(dart_target_os)_Base', | 402 'Dart_<(dart_target_os)_Base', |
| 394 'Dart_<(dart_target_os)_simdbc64_Base', | 403 'Dart_<(dart_target_os)_simdbc64_Base', |
| 395 'Dart_<(dart_target_os)_Debug', | 404 'Dart_<(dart_target_os)_Debug', |
| 396 ], | 405 ], |
| 397 'defines': [ | 406 'defines': [ |
| 398 'DEBUG', | 407 'DEBUG', |
| 399 ], | 408 ], |
| 400 }, | 409 }, |
| 401 | 410 |
| 402 'ReleaseSIMDBC64': { | 411 'ReleaseSIMDBC64': { |
| 403 'inherit_from': [ | 412 'inherit_from': [ |
| 404 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Release', | 413 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Release', |
| 405 'Dart_<(dart_target_os)_Base', | 414 'Dart_<(dart_target_os)_Base', |
| 406 'Dart_<(dart_target_os)_simdbc64_Base', | 415 'Dart_<(dart_target_os)_simdbc64_Base', |
| 407 'Dart_<(dart_target_os)_Release', | 416 'Dart_<(dart_target_os)_Release', |
| 408 ], | 417 ], |
| 409 }, | 418 }, |
| 410 | 419 |
| 420 'ProductSIMDBC64': { |
| 421 'inherit_from': [ |
| 422 'Dart_Base', 'Dart_simdbc_Base', 'Dart_Product', |
| 423 'Dart_<(dart_target_os)_Base', |
| 424 'Dart_<(dart_target_os)_simdbc64_Base', |
| 425 'Dart_<(dart_target_os)_Product', |
| 426 ], |
| 427 }, |
| 428 |
| 411 # ARM and MIPS hardware configurations are only for Linux and Android. | 429 # ARM and MIPS hardware configurations are only for Linux and Android. |
| 412 'DebugXARM': { | 430 'DebugXARM': { |
| 413 'inherit_from': [ | 431 'inherit_from': [ |
| 414 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', | 432 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', |
| 415 'Dart_Linux_Base', | 433 'Dart_Linux_Base', |
| 416 'Dart_Linux_xarm_Base', | 434 'Dart_Linux_xarm_Base', |
| 417 'Dart_Linux_Debug', | 435 'Dart_Linux_Debug', |
| 418 ], | 436 ], |
| 419 }, | 437 }, |
| 420 | 438 |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 }, | 876 }, |
| 859 | 877 |
| 860 'ReleaseX64_x64': { | 878 'ReleaseX64_x64': { |
| 861 'inherit_from': [ 'ReleaseX64' ] | 879 'inherit_from': [ 'ReleaseX64' ] |
| 862 }, | 880 }, |
| 863 }], | 881 }], |
| 864 ], | 882 ], |
| 865 }, | 883 }, |
| 866 }, | 884 }, |
| 867 } | 885 } |
| OLD | NEW |