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

Side by Side Diff: tools/gyp/v8.gyp

Issue 303463005: Extract build configuration into a separate header and move it to the base lib (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-api.cc ('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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after
1054 'target_name': 'v8_libbase.<(v8_target_arch)', 1054 'target_name': 'v8_libbase.<(v8_target_arch)',
1055 # TODO(jochen): Should be a static library once it has sources in it. 1055 # TODO(jochen): Should be a static library once it has sources in it.
1056 'type': 'none', 1056 'type': 'none',
1057 'variables': { 1057 'variables': {
1058 'optimize': 'max', 1058 'optimize': 'max',
1059 }, 1059 },
1060 'include_dirs+': [ 1060 'include_dirs+': [
1061 '../../src', 1061 '../../src',
1062 ], 1062 ],
1063 'sources': [ 1063 'sources': [
1064 '../../src/base/build_config.h',
1064 '../../src/base/macros.h', 1065 '../../src/base/macros.h',
1065 ], 1066 ],
1066 'conditions': [ 1067 'conditions': [
1067 ['want_separate_host_toolset==1', { 1068 ['want_separate_host_toolset==1', {
1068 'toolsets': ['host', 'target'], 1069 'toolsets': ['host', 'target'],
1069 }, { 1070 }, {
1070 'toolsets': ['target'], 1071 'toolsets': ['target'],
1071 }], 1072 }],
1072 ['component=="shared_library"', { 1073 ['component=="shared_library"', {
1073 'defines': [ 1074 'defines': [
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 }], 1221 }],
1221 ['v8_compress_startup_data=="bz2"', { 1222 ['v8_compress_startup_data=="bz2"', {
1222 'libraries': [ 1223 'libraries': [
1223 '-lbz2', 1224 '-lbz2',
1224 ] 1225 ]
1225 }], 1226 }],
1226 ], 1227 ],
1227 }, 1228 },
1228 ], 1229 ],
1229 } 1230 }
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698