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