| 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 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 { | 1321 { |
| 1322 'target_name': 'v8_libbase', | 1322 'target_name': 'v8_libbase', |
| 1323 'type': 'static_library', | 1323 'type': 'static_library', |
| 1324 'variables': { | 1324 'variables': { |
| 1325 'optimize': 'max', | 1325 'optimize': 'max', |
| 1326 }, | 1326 }, |
| 1327 'include_dirs+': [ | 1327 'include_dirs+': [ |
| 1328 '../..', | 1328 '../..', |
| 1329 ], | 1329 ], |
| 1330 'sources': [ | 1330 'sources': [ |
| 1331 '../../src/base/adapters.h', |
| 1331 '../../src/base/atomicops.h', | 1332 '../../src/base/atomicops.h', |
| 1332 '../../src/base/atomicops_internals_arm64_gcc.h', | 1333 '../../src/base/atomicops_internals_arm64_gcc.h', |
| 1333 '../../src/base/atomicops_internals_arm_gcc.h', | 1334 '../../src/base/atomicops_internals_arm_gcc.h', |
| 1334 '../../src/base/atomicops_internals_atomicword_compat.h', | 1335 '../../src/base/atomicops_internals_atomicword_compat.h', |
| 1335 '../../src/base/atomicops_internals_mac.h', | 1336 '../../src/base/atomicops_internals_mac.h', |
| 1336 '../../src/base/atomicops_internals_mips_gcc.h', | 1337 '../../src/base/atomicops_internals_mips_gcc.h', |
| 1337 '../../src/base/atomicops_internals_ppc_gcc.h', | 1338 '../../src/base/atomicops_internals_ppc_gcc.h', |
| 1338 '../../src/base/atomicops_internals_tsan.h', | 1339 '../../src/base/atomicops_internals_tsan.h', |
| 1339 '../../src/base/atomicops_internals_x86_gcc.cc', | 1340 '../../src/base/atomicops_internals_x86_gcc.cc', |
| 1340 '../../src/base/atomicops_internals_x86_gcc.h', | 1341 '../../src/base/atomicops_internals_x86_gcc.h', |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1833 }], | 1834 }], |
| 1834 ['want_separate_host_toolset==1', { | 1835 ['want_separate_host_toolset==1', { |
| 1835 'toolsets': ['host'], | 1836 'toolsets': ['host'], |
| 1836 }, { | 1837 }, { |
| 1837 'toolsets': ['target'], | 1838 'toolsets': ['target'], |
| 1838 }], | 1839 }], |
| 1839 ], | 1840 ], |
| 1840 }, | 1841 }, |
| 1841 ], | 1842 ], |
| 1842 } | 1843 } |
| OLD | NEW |