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

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

Issue 581273003: Make mojo/services pass in "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ui
Patch Set: no brackets Created 6 years, 3 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 | « mojo/application_manager/BUILD.gn ('k') | mojo/apps/js/bindings/gl/BUILD.gn » ('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 shared_library("mojo_js") { 5 shared_library("mojo_js") {
6 sources = [ 6 sources = [
7 "application_delegate_impl.cc", 7 "application_delegate_impl.cc",
8 "js_app.cc", 8 "js_app.cc",
9 "mojo_module.cc", 9 "mojo_module.cc",
10 "main.cc" 10 "main.cc"
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 ":js", 14 ":js",
15 "//base",
15 "//base:i18n", 16 "//base:i18n",
17 "//gin",
16 "//mojo/application", 18 "//mojo/application",
17 "//mojo/public/c/system:for_shared_library", 19 "//mojo/public/c/system:for_shared_library",
20 "//mojo/public/cpp/application",
18 "//mojo/public/cpp/bindings", 21 "//mojo/public/cpp/bindings",
19 "//mojo/public/cpp/utility", 22 "//mojo/public/cpp/utility",
20 "//mojo/services/public/interfaces/content_handler", 23 "//mojo/services/public/interfaces/content_handler",
21 ] 24 ]
22 } 25 }
23 26
24 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib 27 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib
25 source_set("js") { 28 source_set("js") {
29 sources = [
30 "mojo_runner_delegate.cc",
31 "mojo_runner_delegate.h",
32 ]
33
34 public_deps = [
35 "//mojo/bindings/js",
36 ]
26 deps = [ 37 deps = [
27 "//base", 38 "//base",
28 "//gin", 39 "//gin",
29 "//mojo/apps/js/bindings", 40 "//mojo/apps/js/bindings",
30 "//mojo/apps/js/bindings/gl", 41 "//mojo/apps/js/bindings/gl",
31 "//mojo/bindings/js",
32 "//v8", 42 "//v8",
33 ] 43 ]
34 sources = [
35 "mojo_runner_delegate.cc",
36 "mojo_runner_delegate.h",
37 ]
38 } 44 }
OLDNEW
« no previous file with comments | « mojo/application_manager/BUILD.gn ('k') | mojo/apps/js/bindings/gl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698