| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 'GIN_IMPLEMENTATION', | 24 'GIN_IMPLEMENTATION', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 'arguments.cc', | 27 'arguments.cc', |
| 28 'arguments.h', | 28 'arguments.h', |
| 29 'array_buffer.cc', | 29 'array_buffer.cc', |
| 30 'array_buffer.h', | 30 'array_buffer.h', |
| 31 'context_holder.cc', | 31 'context_holder.cc', |
| 32 'converter.cc', | 32 'converter.cc', |
| 33 'converter.h', | 33 'converter.h', |
| 34 'debug_impl.cc', |
| 35 'debug_impl.h', |
| 34 'dictionary.cc', | 36 'dictionary.cc', |
| 35 'dictionary.h', | 37 'dictionary.h', |
| 36 'function_template.cc', | 38 'function_template.cc', |
| 37 'function_template.h', | 39 'function_template.h', |
| 38 'gin_export.h', | 40 'gin_export.h', |
| 39 'handle.h', | 41 'handle.h', |
| 40 'interceptor.cc', | 42 'interceptor.cc', |
| 41 'interceptor.h', | 43 'interceptor.h', |
| 42 'isolate_holder.cc', | 44 'isolate_holder.cc', |
| 43 'modules/console.cc', | 45 'modules/console.cc', |
| 44 'modules/console.h', | 46 'modules/console.h', |
| 45 'modules/file_module_provider.cc', | 47 'modules/file_module_provider.cc', |
| 46 'modules/file_module_provider.h', | 48 'modules/file_module_provider.h', |
| 47 'modules/module_registry.cc', | 49 'modules/module_registry.cc', |
| 48 'modules/module_registry.h', | 50 'modules/module_registry.h', |
| 49 'modules/module_registry_observer.h', | 51 'modules/module_registry_observer.h', |
| 50 'modules/module_runner_delegate.cc', | 52 'modules/module_runner_delegate.cc', |
| 51 'modules/module_runner_delegate.h', | 53 'modules/module_runner_delegate.h', |
| 52 'modules/timer.cc', | 54 'modules/timer.cc', |
| 53 'modules/timer.h', | 55 'modules/timer.h', |
| 54 'object_template_builder.cc', | 56 'object_template_builder.cc', |
| 55 'object_template_builder.h', | 57 'object_template_builder.h', |
| 56 'per_context_data.cc', | 58 'per_context_data.cc', |
| 57 'per_context_data.h', | 59 'per_context_data.h', |
| 58 'per_isolate_data.cc', | 60 'per_isolate_data.cc', |
| 59 'per_isolate_data.h', | 61 'per_isolate_data.h', |
| 60 'public/context_holder.h', | 62 'public/context_holder.h', |
| 63 'public/debug.h', |
| 61 'public/gin_embedders.h', | 64 'public/gin_embedders.h', |
| 62 'public/isolate_holder.h', | 65 'public/isolate_holder.h', |
| 63 'public/v8_platform.h', | 66 'public/v8_platform.h', |
| 64 'public/wrapper_info.h', | 67 'public/wrapper_info.h', |
| 65 'runner.cc', | 68 'runner.cc', |
| 66 'runner.h', | 69 'runner.h', |
| 67 'shell_runner.cc', | 70 'shell_runner.cc', |
| 68 'shell_runner.h', | 71 'shell_runner.h', |
| 69 'try_catch.cc', | 72 'try_catch.cc', |
| 70 'try_catch.h', | 73 'try_catch.h', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'per_context_data_unittest.cc', | 136 'per_context_data_unittest.cc', |
| 134 'shell_runner_unittest.cc', | 137 'shell_runner_unittest.cc', |
| 135 'shell/gin_shell_unittest.cc', | 138 'shell/gin_shell_unittest.cc', |
| 136 'test/run_all_unittests.cc', | 139 'test/run_all_unittests.cc', |
| 137 'test/run_js_tests.cc', | 140 'test/run_js_tests.cc', |
| 138 'wrappable_unittest.cc', | 141 'wrappable_unittest.cc', |
| 139 ], | 142 ], |
| 140 }, | 143 }, |
| 141 ], | 144 ], |
| 142 } | 145 } |
| OLD | NEW |