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

Side by Side Diff: build/standalone.gypi

Issue 1923473002: [build] Update V8 DEPS (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Also roll clang Created 4 years, 8 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
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime 382 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime
383 # detection 383 # detection
384 'mips_fpu_mode%': 'fp32', 384 'mips_fpu_mode%': 'fp32',
385 385
386 # Indicates if gcmole tools are downloaded by a hook. 386 # Indicates if gcmole tools are downloaded by a hook.
387 'gcmole%': 0, 387 'gcmole%': 0,
388 }, 388 },
389 'target_defaults': { 389 'target_defaults': {
390 'variables': { 390 'variables': {
391 'v8_code%': '<(v8_code)', 391 'v8_code%': '<(v8_code)',
392 'clang_warning_flags': [], 392 'clang_warning_flags': [
393 # TODO(thakis): https://crbug.com/604888
394 '-Wno-undefined-var-template',
395 ],
393 'conditions':[ 396 'conditions':[
394 ['OS=="android"', { 397 ['OS=="android"', {
395 'host_os%': '<(host_os)', 398 'host_os%': '<(host_os)',
396 }], 399 }],
397 ], 400 ],
398 }, 401 },
399 'includes': [ 'set_clang_warning_flags.gypi', ], 402 'includes': [ 'set_clang_warning_flags.gypi', ],
400 'default_configuration': 'Debug', 403 'default_configuration': 'Debug',
401 'configurations': { 404 'configurations': {
402 'DebugBaseCommon': { 405 'DebugBaseCommon': {
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 '-fsanitize=cfi-vcall', 1445 '-fsanitize=cfi-vcall',
1443 '-fsanitize=cfi-derived-cast', 1446 '-fsanitize=cfi-derived-cast',
1444 '-fsanitize=cfi-unrelated-cast', 1447 '-fsanitize=cfi-unrelated-cast',
1445 ], 1448 ],
1446 }], 1449 }],
1447 ], 1450 ],
1448 }, 1451 },
1449 }], 1452 }],
1450 ], 1453 ],
1451 } 1454 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698