Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: gin/BUILD.gn

Issue 419673004: gin test - add simple file access for JS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add null return tests for no-args and non-existant paths Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gin/gin.gyp » ('j') | gin/test/file.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 sources = [ 84 sources = [
85 "test/file.cc",
86 "test/file.h",
85 "test/file_runner.cc", 87 "test/file_runner.cc",
86 "test/file_runner.h", 88 "test/file_runner.h",
87 "test/gc.cc", 89 "test/gc.cc",
88 "test/gc.h", 90 "test/gc.h",
89 "test/gtest.cc", 91 "test/gtest.cc",
90 "test/gtest.h", 92 "test/gtest.h",
91 "test/v8_test.cc", 93 "test/v8_test.cc",
92 "test/v8_test.h", 94 "test/v8_test.h",
93 ] 95 ]
94 96
(...skipping 21 matching lines...) Expand all
116 "test/run_js_tests.cc", 118 "test/run_js_tests.cc",
117 "wrappable_unittest.cc", 119 "wrappable_unittest.cc",
118 ] 120 ]
119 121
120 deps = [ 122 deps = [
121 ":gin_test", 123 ":gin_test",
122 "//base/test:test_support", 124 "//base/test:test_support",
123 "//v8", 125 "//v8",
124 ] 126 ]
125 } 127 }
OLDNEW
« no previous file with comments | « no previous file | gin/gin.gyp » ('j') | gin/test/file.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698