| 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 26 matching lines...) Expand all Loading... |
| 37 'handle.h', | 37 'handle.h', |
| 38 'isolate_holder.cc', | 38 'isolate_holder.cc', |
| 39 'modules/console.cc', | 39 'modules/console.cc', |
| 40 'modules/console.h', | 40 'modules/console.h', |
| 41 'modules/file_module_provider.cc', | 41 'modules/file_module_provider.cc', |
| 42 'modules/file_module_provider.h', | 42 'modules/file_module_provider.h', |
| 43 'modules/module_registry.cc', | 43 'modules/module_registry.cc', |
| 44 'modules/module_registry.h', | 44 'modules/module_registry.h', |
| 45 'modules/module_runner_delegate.cc', | 45 'modules/module_runner_delegate.cc', |
| 46 'modules/module_runner_delegate.h', | 46 'modules/module_runner_delegate.h', |
| 47 'modules/timer.cc', |
| 48 'modules/timer.h', |
| 47 'object_template_builder.cc', | 49 'object_template_builder.cc', |
| 48 'object_template_builder.h', | 50 'object_template_builder.h', |
| 49 'per_context_data.cc', | 51 'per_context_data.cc', |
| 50 'per_context_data.h', | 52 'per_context_data.h', |
| 51 'per_isolate_data.cc', | 53 'per_isolate_data.cc', |
| 52 'per_isolate_data.h', | 54 'per_isolate_data.h', |
| 53 'public/context_holder.h', | 55 'public/context_holder.h', |
| 54 'public/gin_embedders.h', | 56 'public/gin_embedders.h', |
| 55 'public/isolate_holder.h', | 57 'public/isolate_holder.h', |
| 56 'public/wrapper_info.h', | 58 'public/wrapper_info.h', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 { | 107 { |
| 106 'target_name': 'gin_unittests', | 108 'target_name': 'gin_unittests', |
| 107 'type': 'executable', | 109 'type': 'executable', |
| 108 'dependencies': [ | 110 'dependencies': [ |
| 109 '../base/base.gyp:run_all_unittests', | 111 '../base/base.gyp:run_all_unittests', |
| 110 '../v8/tools/gyp/v8.gyp:v8', | 112 '../v8/tools/gyp/v8.gyp:v8', |
| 111 'gin_test', | 113 'gin_test', |
| 112 ], | 114 ], |
| 113 'sources': [ | 115 'sources': [ |
| 114 'converter_unittest.cc', | 116 'converter_unittest.cc', |
| 117 'modules/timer_unittest.cc', |
| 115 'test/run_all_unittests.cc', | 118 'test/run_all_unittests.cc', |
| 116 'test/run_js_tests.cc', | 119 'test/run_js_tests.cc', |
| 117 'runner_unittest.cc', | 120 'runner_unittest.cc', |
| 118 'wrappable_unittest.cc', | 121 'wrappable_unittest.cc', |
| 119 ], | 122 ], |
| 120 }, | 123 }, |
| 121 ], | 124 ], |
| 122 } | 125 } |
| OLD | NEW |