Chromium Code Reviews| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 380 'type': 'static_library', | 380 'type': 'static_library', |
| 381 'dependencies': [ | 381 'dependencies': [ |
| 382 'v8_libbase', | 382 'v8_libbase', |
| 383 'v8_libsampler', | 383 'v8_libsampler', |
| 384 ], | 384 ], |
| 385 'variables': { | 385 'variables': { |
| 386 'optimize': 'max', | 386 'optimize': 'max', |
| 387 }, | 387 }, |
| 388 'include_dirs+': [ | 388 'include_dirs+': [ |
| 389 '..', | 389 '..', |
| 390 # To be able to find base/trace_event/common/trace_event_common.h | |
| 391 '../..', | |
|
fmeawad
2016/06/14 18:26:33
This line was added to allow v8, when built inside
fmeawad
2016/06/14 20:06:27
It was done this way because v8 inside chrome does
| |
| 392 ], | 390 ], |
| 393 'sources': [ ### gcmole(all) ### | 391 'sources': [ ### gcmole(all) ### |
| 394 '../include/v8-debug.h', | 392 '../include/v8-debug.h', |
| 395 '../include/v8-experimental.h', | 393 '../include/v8-experimental.h', |
| 396 '../include/v8-platform.h', | 394 '../include/v8-platform.h', |
| 397 '../include/v8-profiler.h', | 395 '../include/v8-profiler.h', |
| 398 '../include/v8-testing.h', | 396 '../include/v8-testing.h', |
| 399 '../include/v8-util.h', | 397 '../include/v8-util.h', |
| 400 '../include/v8-version.h', | 398 '../include/v8-version.h', |
| 401 '../include/v8.h', | 399 '../include/v8.h', |
| (...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2280 }], | 2278 }], |
| 2281 ['want_separate_host_toolset==1', { | 2279 ['want_separate_host_toolset==1', { |
| 2282 'toolsets': ['host'], | 2280 'toolsets': ['host'], |
| 2283 }, { | 2281 }, { |
| 2284 'toolsets': ['target'], | 2282 'toolsets': ['target'], |
| 2285 }], | 2283 }], |
| 2286 ], | 2284 ], |
| 2287 }, | 2285 }, |
| 2288 ], | 2286 ], |
| 2289 } | 2287 } |
| OLD | NEW |