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 | 390 # TODO: remove once chromium defines v8_tracing_include_dir |
| 391 '../..', | 391 '../..', |
| 392 '<(v8_tracing_include_dir)', | |
|
Michael Achenbach
2016/06/15 06:42:43
Won't that fail if you declare just in the standal
Mircea Trofin
2016/06/15 06:45:53
No, I left the ../.. Under the Todo. I like your i
| |
| 392 ], | 393 ], |
| 393 'sources': [ ### gcmole(all) ### | 394 'sources': [ ### gcmole(all) ### |
| 394 '../include/v8-debug.h', | 395 '../include/v8-debug.h', |
| 395 '../include/v8-experimental.h', | 396 '../include/v8-experimental.h', |
| 396 '../include/v8-platform.h', | 397 '../include/v8-platform.h', |
| 397 '../include/v8-profiler.h', | 398 '../include/v8-profiler.h', |
| 398 '../include/v8-testing.h', | 399 '../include/v8-testing.h', |
| 399 '../include/v8-util.h', | 400 '../include/v8-util.h', |
| 400 '../include/v8-version.h', | 401 '../include/v8-version.h', |
| 401 '../include/v8.h', | 402 '../include/v8.h', |
| (...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2280 }], | 2281 }], |
| 2281 ['want_separate_host_toolset==1', { | 2282 ['want_separate_host_toolset==1', { |
| 2282 'toolsets': ['host'], | 2283 'toolsets': ['host'], |
| 2283 }, { | 2284 }, { |
| 2284 'toolsets': ['target'], | 2285 'toolsets': ['target'], |
| 2285 }], | 2286 }], |
| 2286 ], | 2287 ], |
| 2287 }, | 2288 }, |
| 2288 ], | 2289 ], |
| 2289 } | 2290 } |
| OLD | NEW |