| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("gin") { | 5 component("gin") { |
| 6 sources = [ | 6 sources = [ |
| 7 "arguments.cc", | 7 "arguments.cc", |
| 8 "arguments.h", | 8 "arguments.h", |
| 9 "array_buffer.cc", | 9 "array_buffer.cc", |
| 10 "array_buffer.h", | 10 "array_buffer.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "per_isolate_data.cc", | 40 "per_isolate_data.cc", |
| 41 "per_isolate_data.h", | 41 "per_isolate_data.h", |
| 42 "public/context_holder.h", | 42 "public/context_holder.h", |
| 43 "public/debug.h", | 43 "public/debug.h", |
| 44 "public/gin_embedders.h", | 44 "public/gin_embedders.h", |
| 45 "public/isolate_holder.h", | 45 "public/isolate_holder.h", |
| 46 "public/v8_platform.h", | 46 "public/v8_platform.h", |
| 47 "public/wrapper_info.h", | 47 "public/wrapper_info.h", |
| 48 "runner.cc", | 48 "runner.cc", |
| 49 "runner.h", | 49 "runner.h", |
| 50 "run_microtasks_observer.cc", |
| 51 "run_microtasks_observer.h", |
| 50 "shell_runner.cc", | 52 "shell_runner.cc", |
| 51 "shell_runner.h", | 53 "shell_runner.h", |
| 52 "try_catch.cc", | 54 "try_catch.cc", |
| 53 "try_catch.h", | 55 "try_catch.h", |
| 54 "v8_platform.cc", | 56 "v8_platform.cc", |
| 55 "wrappable.cc", | 57 "wrappable.cc", |
| 56 "wrappable.h", | 58 "wrappable.h", |
| 57 "wrapper_info.cc", | 59 "wrapper_info.cc", |
| 58 ] | 60 ] |
| 59 | 61 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "test/run_js_tests.cc", | 120 "test/run_js_tests.cc", |
| 119 "wrappable_unittest.cc", | 121 "wrappable_unittest.cc", |
| 120 ] | 122 ] |
| 121 | 123 |
| 122 deps = [ | 124 deps = [ |
| 123 ":gin_test", | 125 ":gin_test", |
| 124 "//base/test:test_support", | 126 "//base/test:test_support", |
| 125 "//v8", | 127 "//v8", |
| 126 ] | 128 ] |
| 127 } | 129 } |
| OLD | NEW |