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

Side by Side Diff: mojo/apps/js/test/BUILD.gn

Issue 709603002: Move mojo/apps/js tests et al to mojo/edk/js/test,tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: chromium environment for JS tests Created 6 years, 1 month 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
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 import("//mojo/public/tools/bindings/mojom.gni")
6
7 test("apps_js_unittests") { 5 test("apps_js_unittests") {
8 deps = [ 6 deps = [
9 ":js_to_cpp_bindings",
10 "//gin:gin_test", 7 "//gin:gin_test",
11 "//mojo/apps/js:mojo_runner",
12 "//mojo/apps/js/bindings", 8 "//mojo/apps/js/bindings",
13 "//mojo/edk/js", 9 "//mojo/edk/js",
14 "//mojo/common", 10 "//mojo/common",
15 "//mojo/edk/test:run_all_unittests", 11 "//mojo/edk/test:run_all_unittests",
16 "//mojo/edk/test:test_support", 12 "//mojo/edk/test:test_support",
17 "//mojo/public/cpp/bindings", 13 "//mojo/public/cpp/bindings",
18 "//mojo/public/cpp/system", 14 "//mojo/public/cpp/system",
19 "//mojo/public/interfaces/bindings/tests:test_interfaces", 15 "//mojo/public/interfaces/bindings/tests:test_interfaces",
20 ] 16 ]
21 17
22 sources = [ 18 sources = [
23 "js_to_cpp_unittest.cc",
24 "run_apps_js_tests.cc", 19 "run_apps_js_tests.cc",
25 ] 20 ]
26 } 21 }
27
28 mojom("js_to_cpp_bindings") {
29 sources = [ "js_to_cpp.mojom" ]
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698