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-object.cc', |
| 2022 'libplatform/tracing/trace-writer.cc', |
| 2023 'libplatform/tracing/trace-writer.h', |
| 2024 'libplatform/tracing/tracing-controller.cc', |
2017 'libplatform/worker-thread.cc', | 2025 'libplatform/worker-thread.cc', |
2018 'libplatform/worker-thread.h', | 2026 'libplatform/worker-thread.h', |
2019 ], | 2027 ], |
2020 'conditions': [ | 2028 'conditions': [ |
2021 ['want_separate_host_toolset==1', { | 2029 ['want_separate_host_toolset==1', { |
2022 'toolsets': ['host', 'target'], | 2030 'toolsets': ['host', 'target'], |
2023 }, { | 2031 }, { |
2024 'toolsets': ['target'], | 2032 'toolsets': ['target'], |
2025 }], | 2033 }], |
2026 ], | 2034 ], |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2381 'conditions': [ | 2389 'conditions': [ |
2382 ['want_separate_host_toolset==1', { | 2390 ['want_separate_host_toolset==1', { |
2383 'toolsets': ['host'], | 2391 'toolsets': ['host'], |
2384 }, { | 2392 }, { |
2385 'toolsets': ['target'], | 2393 'toolsets': ['target'], |
2386 }], | 2394 }], |
2387 ], | 2395 ], |
2388 }, | 2396 }, |
2389 ], | 2397 ], |
2390 } | 2398 } |
OLD | NEW |