OLD | NEW |
---|---|
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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
357 'type': 'static_library', | 357 'type': 'static_library', |
358 'dependencies': [ | 358 'dependencies': [ |
359 'v8_libbase', | 359 'v8_libbase', |
360 ], | 360 ], |
361 'variables': { | 361 'variables': { |
362 'optimize': 'max', | 362 'optimize': 'max', |
363 }, | 363 }, |
364 'include_dirs+': [ | 364 'include_dirs+': [ |
365 '../..', | 365 '../..', |
366 ], | 366 ], |
367 'defines': [ | |
368 # TODO(jochen): Remove again after this is globally turned on. | |
369 'V8_IMMINENT_DEPRECATION_WARNINGS', | |
vogelheim
2015/06/03 08:01:46
Some compilers still have issues with this, it see
| |
370 ], | |
367 'sources': [ ### gcmole(all) ### | 371 'sources': [ ### gcmole(all) ### |
368 '../../src/accessors.cc', | 372 '../../src/accessors.cc', |
369 '../../src/accessors.h', | 373 '../../src/accessors.h', |
370 '../../src/allocation.cc', | 374 '../../src/allocation.cc', |
371 '../../src/allocation.h', | 375 '../../src/allocation.h', |
372 '../../src/allocation-site-scopes.cc', | 376 '../../src/allocation-site-scopes.cc', |
373 '../../src/allocation-site-scopes.h', | 377 '../../src/allocation-site-scopes.h', |
374 '../../src/allocation-tracker.cc', | 378 '../../src/allocation-tracker.cc', |
375 '../../src/allocation-tracker.h', | 379 '../../src/allocation-tracker.h', |
376 '../../src/api.cc', | 380 '../../src/api.cc', |
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1880 }], | 1884 }], |
1881 ['want_separate_host_toolset==1', { | 1885 ['want_separate_host_toolset==1', { |
1882 'toolsets': ['host'], | 1886 'toolsets': ['host'], |
1883 }, { | 1887 }, { |
1884 'toolsets': ['target'], | 1888 'toolsets': ['target'], |
1885 }], | 1889 }], |
1886 ], | 1890 ], |
1887 }, | 1891 }, |
1888 ], | 1892 ], |
1889 } | 1893 } |
OLD | NEW |