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 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2003 }, | 2003 }, |
2004 'dependencies': [ | 2004 'dependencies': [ |
2005 'v8_libbase', | 2005 'v8_libbase', |
2006 ], | 2006 ], |
2007 'include_dirs+': [ | 2007 'include_dirs+': [ |
2008 '..', | 2008 '..', |
2009 '../include', | 2009 '../include', |
2010 ], | 2010 ], |
2011 'sources': [ | 2011 'sources': [ |
2012 '../include/libplatform/libplatform.h', | 2012 '../include/libplatform/libplatform.h', |
2013 '../include/libplatform/v8-tracing.h', | |
2013 'libplatform/default-platform.cc', | 2014 'libplatform/default-platform.cc', |
2014 'libplatform/default-platform.h', | 2015 'libplatform/default-platform.h', |
2015 'libplatform/task-queue.cc', | 2016 'libplatform/task-queue.cc', |
2016 'libplatform/task-queue.h', | 2017 'libplatform/task-queue.h', |
2018 'libplatform/tracing/trace-buffer.cc', | |
2019 'libplatform/tracing/trace-buffer.h', | |
2020 'libplatform/tracing/trace-config.cc', | |
2021 'libplatform/tracing/trace-config.h', | |
lpy
2016/07/26 17:36:18
No trace-config.h
fmeawad
2016/07/26 17:56:47
Done.
| |
2022 'libplatform/tracing/trace-object.cc', | |
2023 'libplatform/tracing/trace-writer.cc', | |
2024 'libplatform/tracing/trace-writer.h', | |
2025 'libplatform/tracing/tracing-controller.cc', | |
2017 'libplatform/worker-thread.cc', | 2026 'libplatform/worker-thread.cc', |
2018 'libplatform/worker-thread.h', | 2027 'libplatform/worker-thread.h', |
2019 ], | 2028 ], |
2020 'conditions': [ | 2029 'conditions': [ |
2021 ['want_separate_host_toolset==1', { | 2030 ['want_separate_host_toolset==1', { |
2022 'toolsets': ['host', 'target'], | 2031 'toolsets': ['host', 'target'], |
2023 }, { | 2032 }, { |
2024 'toolsets': ['target'], | 2033 'toolsets': ['target'], |
2025 }], | 2034 }], |
2026 ], | 2035 ], |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2381 'conditions': [ | 2390 'conditions': [ |
2382 ['want_separate_host_toolset==1', { | 2391 ['want_separate_host_toolset==1', { |
2383 'toolsets': ['host'], | 2392 'toolsets': ['host'], |
2384 }, { | 2393 }, { |
2385 'toolsets': ['target'], | 2394 'toolsets': ['target'], |
2386 }], | 2395 }], |
2387 ], | 2396 ], |
2388 }, | 2397 }, |
2389 ], | 2398 ], |
2390 } | 2399 } |
OLD | NEW |