| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   74  |   74  | 
|   75   deps = [ |   75   deps = [ | 
|   76     ":gin", |   76     ":gin", | 
|   77     "//base", |   77     "//base", | 
|   78     "//base:i18n", |   78     "//base:i18n", | 
|   79     "//v8", |   79     "//v8", | 
|   80   ] |   80   ] | 
|   81 } |   81 } | 
|   82  |   82  | 
|   83 source_set("gin_test") { |   83 source_set("gin_test") { | 
 |   84   testonly = true | 
|   84   sources = [ |   85   sources = [ | 
|   85     "test/file.cc", |   86     "test/file.cc", | 
|   86     "test/file.h", |   87     "test/file.h", | 
|   87     "test/file_runner.cc", |   88     "test/file_runner.cc", | 
|   88     "test/file_runner.h", |   89     "test/file_runner.h", | 
|   89     "test/gc.cc", |   90     "test/gc.cc", | 
|   90     "test/gc.h", |   91     "test/gc.h", | 
|   91     "test/gtest.cc", |   92     "test/gtest.cc", | 
|   92     "test/gtest.h", |   93     "test/gtest.h", | 
|   93     "test/v8_test.cc", |   94     "test/v8_test.cc", | 
| (...skipping 25 matching lines...) Expand all  Loading... | 
|  119     "test/run_js_tests.cc", |  120     "test/run_js_tests.cc", | 
|  120     "wrappable_unittest.cc", |  121     "wrappable_unittest.cc", | 
|  121   ] |  122   ] | 
|  122  |  123  | 
|  123   deps = [ |  124   deps = [ | 
|  124     ":gin_test", |  125     ":gin_test", | 
|  125     "//base/test:test_support", |  126     "//base/test:test_support", | 
|  126     "//v8", |  127     "//v8", | 
|  127   ] |  128   ] | 
|  128 } |  129 } | 
| OLD | NEW |