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

Side by Side Diff: gypfiles/toolchain.gypi

Issue 2705423003: [build] Fix gyp files for building inspector (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | src/inspector/inspector.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 ], 984 ],
985 }], 985 }],
986 ['OS=="win"', { 986 ['OS=="win"', {
987 'defines': [ 987 'defines': [
988 'WIN32', 988 'WIN32',
989 ], 989 ],
990 # 4351: VS 2005 and later are warning us that they've fixed a bug 990 # 4351: VS 2005 and later are warning us that they've fixed a bug
991 # present in VS 2003 and earlier. 991 # present in VS 2003 and earlier.
992 'msvs_disabled_warnings': [4351], 992 'msvs_disabled_warnings': [4351],
993 'msvs_configuration_attributes': { 993 'msvs_configuration_attributes': {
994 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
995 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
996 'CharacterSet': '1', 994 'CharacterSet': '1',
997 }, 995 },
998 }], 996 }],
999 ['OS=="win" and v8_target_arch=="ia32"', { 997 ['OS=="win" and v8_target_arch=="ia32"', {
1000 'msvs_settings': { 998 'msvs_settings': {
1001 'VCCLCompilerTool': { 999 'VCCLCompilerTool': {
1002 # Ensure no surprising artifacts from 80bit double math with x86. 1000 # Ensure no surprising artifacts from 80bit double math with x86.
1003 'AdditionalOptions': ['/arch:SSE2'], 1001 'AdditionalOptions': ['/arch:SSE2'],
1004 }, 1002 },
1005 }, 1003 },
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 ], 1411 ],
1414 }, 1412 },
1415 'Release_x64': { 1413 'Release_x64': {
1416 'inherit_from': ['ReleaseBase'], 1414 'inherit_from': ['ReleaseBase'],
1417 }, 1415 },
1418 }], 1416 }],
1419 ], 1417 ],
1420 }, # configurations 1418 }, # configurations
1421 }, # target_defaults 1419 }, # target_defaults
1422 } 1420 }
OLDNEW
« no previous file with comments | « no previous file | src/inspector/inspector.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698