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

Side by Side Diff: build/standalone.gypi

Issue 792783006: Define SDKROOT for Mac (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « no previous file | 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 'MinimumRequiredVersion': '5.01', # XP. 379 'MinimumRequiredVersion': '5.01', # XP.
380 'TargetMachine': '1', # ia32 380 'TargetMachine': '1', # ia32
381 }], 381 }],
382 ], 382 ],
383 }, 383 },
384 }, 384 },
385 }, 385 },
386 }], # OS=="win" 386 }], # OS=="win"
387 ['OS=="mac"', { 387 ['OS=="mac"', {
388 'xcode_settings': { 388 'xcode_settings': {
389 'SDKROOT': 'macosx',
389 'SYMROOT': '<(DEPTH)/xcodebuild', 390 'SYMROOT': '<(DEPTH)/xcodebuild',
390 }, 391 },
391 'target_defaults': { 392 'target_defaults': {
392 'xcode_settings': { 393 'xcode_settings': {
393 'ALWAYS_SEARCH_USER_PATHS': 'NO', 394 'ALWAYS_SEARCH_USER_PATHS': 'NO',
394 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99 395 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
395 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks 396 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
396 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic 397 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
397 # (Equivalent to -fPIC) 398 # (Equivalent to -fPIC)
398 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions 399 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 ], 451 ],
451 }], 452 }],
452 ['clang==1 and OS=="win"', { 453 ['clang==1 and OS=="win"', {
453 'make_global_settings': [ 454 'make_global_settings': [
454 # On Windows, gyp's ninja generator only looks at CC. 455 # On Windows, gyp's ninja generator only looks at CC.
455 ['CC', '<(make_clang_dir)/bin/clang-cl'], 456 ['CC', '<(make_clang_dir)/bin/clang-cl'],
456 ], 457 ],
457 }], 458 }],
458 ], 459 ],
459 } 460 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698