Chromium Code Reviews| 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', |
| 11 # TODO(v8-team): Fix V8 build. | 11 # TODO(vm-team): Convert old style casts to C++ casts. |
|
Ivan Posva
2013/05/02 08:22:13
There shouldn't be any, but we will definitely cle
| |
| 12 #'-Wold-style-cast', | 12 #'-Wold-style-cast', |
| 13 ], | 13 ], |
| 14 | 14 |
| 15 # Default value. This may be overridden in a containing project gyp. | 15 # Default value. This may be overridden in a containing project gyp. |
| 16 'target_arch%': 'ia32', | 16 'target_arch%': 'ia32', |
| 17 | 17 |
| 18 # Don't use separate host toolset for compiling V8. | |
| 19 'want_separate_host_toolset': 0, | |
| 20 | |
| 21 'conditions': [ | 18 'conditions': [ |
| 22 ['"<(target_arch)"=="ia32"', { 'dart_target_arch': 'IA32', }], | 19 ['"<(target_arch)"=="ia32"', { 'dart_target_arch': 'IA32', }], |
| 23 ['"<(target_arch)"=="x64"', { 'dart_target_arch': 'X64', }], | 20 ['"<(target_arch)"=="x64"', { 'dart_target_arch': 'X64', }], |
| 24 ['"<(target_arch)"=="arm"', { 'dart_target_arch': 'ARM', }], | 21 ['"<(target_arch)"=="arm"', { 'dart_target_arch': 'ARM', }], |
| 25 ['"<(target_arch)"=="simarm"', { 'dart_target_arch': 'SIMARM', }], | 22 ['"<(target_arch)"=="simarm"', { 'dart_target_arch': 'SIMARM', }], |
| 26 ['"<(target_arch)"=="mips"', { 'dart_target_arch': 'MIPS', }], | 23 ['"<(target_arch)"=="mips"', { 'dart_target_arch': 'MIPS', }], |
| 27 ['"<(target_arch)"=="simmips"', { 'dart_target_arch': 'SIMMIPS', }], | 24 ['"<(target_arch)"=="simmips"', { 'dart_target_arch': 'SIMMIPS', }], |
| 28 ], | 25 ], |
| 29 }, | 26 }, |
| 30 'conditions': [ | 27 'conditions': [ |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 'Debug': { | 143 'Debug': { |
| 147 'inherit_from': ['Debug<(dart_target_arch)'] | 144 'inherit_from': ['Debug<(dart_target_arch)'] |
| 148 }, | 145 }, |
| 149 | 146 |
| 150 'Release': { | 147 'Release': { |
| 151 'inherit_from': ['Release<(dart_target_arch)'] | 148 'inherit_from': ['Release<(dart_target_arch)'] |
| 152 }, | 149 }, |
| 153 }, | 150 }, |
| 154 }, | 151 }, |
| 155 } | 152 } |
| OLD | NEW |