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

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

Issue 637373002: Mojo JS bindings: simplify mojo.connectToService() usage - Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed the mojo_internals module, made Connection localFactory optional Created 6 years, 2 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
« no previous file with comments | « no previous file | mojo/apps/js/application_delegate_impl.cc » ('j') | no next file with comments »
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 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib 5 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib
6 source_set("js") { 6 source_set("js") {
7 sources = [ 7 sources = [
8 "mojo_runner_delegate.cc", 8 "mojo_runner_delegate.cc",
9 "mojo_runner_delegate.h", 9 "mojo_runner_delegate.h",
10 ] 10 ]
11 11
12 public_deps = [ 12 public_deps = [
13 "//mojo/bindings/js", 13 "//mojo/bindings/js",
14 ] 14 ]
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//gin", 17 "//gin",
18 "//mojo/apps/js/bindings", 18 "//mojo/apps/js/bindings",
19 "//mojo/apps/js/bindings/gl", 19 "//mojo/apps/js/bindings/gl",
20 "//v8", 20 "//v8",
21 ] 21 ]
22 } 22 }
23 23
24 # GYP version: mojo/mojo_apps.gypi:mojo_js_apps_lib 24 # GYP version: mojo/mojo_apps.gypi:mojo_js_apps_lib
25 source_set("js_apps") { 25 source_set("js_apps") {
26 sources = [ 26 sources = [
27 "application_delegate_impl.cc", 27 "application_delegate_impl.cc",
28 "js_app.cc", 28 "js_app.cc",
29 "mojo_module.cc", 29 "mojo_bridge_module.cc",
30 ] 30 ]
31 31
32 public_deps = [ 32 public_deps = [
33 "//mojo/bindings/js", 33 "//mojo/bindings/js",
34 ] 34 ]
35 deps = [ 35 deps = [
36 ":js", 36 ":js",
37 "//mojo/application", 37 "//mojo/application",
38 "//mojo/public/c/system:for_shared_library", 38 "//mojo/public/c/system:for_shared_library",
39 "//mojo/public/cpp/utility", 39 "//mojo/public/cpp/utility",
(...skipping 24 matching lines...) Expand all
64 ":js_apps", 64 ":js_apps",
65 "//base:i18n", 65 "//base:i18n",
66 "//mojo/application:application", 66 "//mojo/application:application",
67 "//mojo/environment:chromium", 67 "//mojo/environment:chromium",
68 "//mojo/public/cpp/application", 68 "//mojo/public/cpp/application",
69 ] 69 ]
70 } 70 }
71 71
72 72
73 73
OLDNEW
« no previous file with comments | « no previous file | mojo/apps/js/application_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698