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

Side by Side Diff: build/common.gypi

Issue 9179009: Add Android cross-compilation support to top-level Makefile (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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 | « build/android.gypi ('k') | src/d8.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 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 'cflags': [ '-I/usr/pkg/include' ], 264 'cflags': [ '-I/usr/pkg/include' ],
265 }], 265 }],
266 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 266 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', {
267 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', 267 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
268 '-Wnon-virtual-dtor' ], 268 '-Wnon-virtual-dtor' ],
269 }], 269 }],
270 ], 270 ],
271 }, 271 },
272 'Release': { 272 'Release': {
273 'conditions': [ 273 'conditions': [
274 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 274 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \
275 or OS=="android"', {
275 'cflags!': [ 276 'cflags!': [
276 '-O2', 277 '-O2',
277 '-Os', 278 '-Os',
278 ], 279 ],
279 'cflags': [ 280 'cflags': [
280 '-fdata-sections', 281 '-fdata-sections',
281 '-ffunction-sections', 282 '-ffunction-sections',
282 '-fomit-frame-pointer', 283 '-fomit-frame-pointer',
283 '-O3', 284 '-O3',
284 ], 285 ],
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 # some test cases can cause stack overflow. 342 # some test cases can cause stack overflow.
342 # 'StackReserveSize': '297152', 343 # 'StackReserveSize': '297152',
343 }, 344 },
344 }, 345 },
345 }], 346 }],
346 ], 347 ],
347 }, 348 },
348 }, 349 },
349 }, 350 },
350 } 351 }
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | src/d8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698