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

Side by Side Diff: build/standalone.gypi

Issue 1197703004: [android] Add toolchain path logic to gyp config. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review Created 5 years, 6 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 | « build/android.gypi ('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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 }, 310 },
311 }, 311 },
312 }], 312 }],
313 ], 313 ],
314 }], 314 }],
315 ], 315 ],
316 }, 316 },
317 'conditions': [ 317 'conditions': [
318 ['os_posix==1 and OS!="mac"', { 318 ['os_posix==1 and OS!="mac"', {
319 'target_defaults': { 319 'target_defaults': {
320 'conditions': [ 320 'conditions': [
321 # Common options for AddressSanitizer, LeakSanitizer, 321 # Common options for AddressSanitizer, LeakSanitizer,
322 # ThreadSanitizer and MemorySanitizer. 322 # ThreadSanitizer and MemorySanitizer.
323 ['asan==1 or lsan==1 or tsan==1 or msan==1', { 323 ['asan==1 or lsan==1 or tsan==1 or msan==1', {
324 'target_conditions': [ 324 'target_conditions': [
325 ['_toolset=="target"', { 325 ['_toolset=="target"', {
326 'cflags': [ 326 'cflags': [
327 '-fno-omit-frame-pointer', 327 '-fno-omit-frame-pointer',
328 '-gline-tables-only', 328 '-gline-tables-only',
329 ], 329 ],
330 'cflags!': [ 330 'cflags!': [
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 727 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
728 'make_global_settings': [ 728 'make_global_settings': [
729 ['CC_wrapper', '<(gomadir)/gomacc'], 729 ['CC_wrapper', '<(gomadir)/gomacc'],
730 ['CXX_wrapper', '<(gomadir)/gomacc'], 730 ['CXX_wrapper', '<(gomadir)/gomacc'],
731 ['CC.host_wrapper', '<(gomadir)/gomacc'], 731 ['CC.host_wrapper', '<(gomadir)/gomacc'],
732 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 732 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
733 ], 733 ],
734 }], 734 }],
735 ], 735 ],
736 } 736 }
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698