| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 'target_name': 'v8_base', | 360 'target_name': 'v8_base', |
| 361 'type': 'static_library', | 361 'type': 'static_library', |
| 362 'dependencies': [ | 362 'dependencies': [ |
| 363 'v8_libbase', | 363 'v8_libbase', |
| 364 ], | 364 ], |
| 365 'variables': { | 365 'variables': { |
| 366 'optimize': 'max', | 366 'optimize': 'max', |
| 367 }, | 367 }, |
| 368 'include_dirs+': [ | 368 'include_dirs+': [ |
| 369 '../..', | 369 '../..', |
| 370 # To be able to find base/trace_event/common/trace_event_common.h |
| 371 '../../..', |
| 370 ], | 372 ], |
| 371 'defines': [ | 373 'defines': [ |
| 372 # TODO(jochen): Remove again after this is globally turned on. | 374 # TODO(jochen): Remove again after this is globally turned on. |
| 373 'V8_IMMINENT_DEPRECATION_WARNINGS', | 375 'V8_IMMINENT_DEPRECATION_WARNINGS', |
| 374 ], | 376 ], |
| 375 'sources': [ ### gcmole(all) ### | 377 'sources': [ ### gcmole(all) ### |
| 376 '../../include/v8-debug.h', | 378 '../../include/v8-debug.h', |
| 377 '../../include/v8-experimental.h', | 379 '../../include/v8-experimental.h', |
| 378 '../../include/v8-platform.h', | 380 '../../include/v8-platform.h', |
| 379 '../../include/v8-profiler.h', | 381 '../../include/v8-profiler.h', |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 '../../src/startup-data-util.h', | 1025 '../../src/startup-data-util.h', |
| 1024 '../../src/string-builder.cc', | 1026 '../../src/string-builder.cc', |
| 1025 '../../src/string-builder.h', | 1027 '../../src/string-builder.h', |
| 1026 '../../src/string-search.h', | 1028 '../../src/string-search.h', |
| 1027 '../../src/string-stream.cc', | 1029 '../../src/string-stream.cc', |
| 1028 '../../src/string-stream.h', | 1030 '../../src/string-stream.h', |
| 1029 '../../src/strtod.cc', | 1031 '../../src/strtod.cc', |
| 1030 '../../src/strtod.h', | 1032 '../../src/strtod.h', |
| 1031 '../../src/ic/stub-cache.cc', | 1033 '../../src/ic/stub-cache.cc', |
| 1032 '../../src/ic/stub-cache.h', | 1034 '../../src/ic/stub-cache.h', |
| 1035 '../../src/tracing/trace-event.cc', |
| 1036 '../../src/tracing/trace-event.h', |
| 1033 '../../src/transitions-inl.h', | 1037 '../../src/transitions-inl.h', |
| 1034 '../../src/transitions.cc', | 1038 '../../src/transitions.cc', |
| 1035 '../../src/transitions.h', | 1039 '../../src/transitions.h', |
| 1036 '../../src/type-cache.cc', | 1040 '../../src/type-cache.cc', |
| 1037 '../../src/type-cache.h', | 1041 '../../src/type-cache.h', |
| 1038 '../../src/type-feedback-vector-inl.h', | 1042 '../../src/type-feedback-vector-inl.h', |
| 1039 '../../src/type-feedback-vector.cc', | 1043 '../../src/type-feedback-vector.cc', |
| 1040 '../../src/type-feedback-vector.h', | 1044 '../../src/type-feedback-vector.h', |
| 1041 '../../src/type-info.cc', | 1045 '../../src/type-info.cc', |
| 1042 '../../src/type-info.h', | 1046 '../../src/type-info.h', |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2114 }], | 2118 }], |
| 2115 ['want_separate_host_toolset==1', { | 2119 ['want_separate_host_toolset==1', { |
| 2116 'toolsets': ['host'], | 2120 'toolsets': ['host'], |
| 2117 }, { | 2121 }, { |
| 2118 'toolsets': ['target'], | 2122 'toolsets': ['target'], |
| 2119 }], | 2123 }], |
| 2120 ], | 2124 ], |
| 2121 }, | 2125 }, |
| 2122 ], | 2126 ], |
| 2123 } | 2127 } |
| OLD | NEW |