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

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

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

Powered by Google App Engine
This is Rietveld 408576698