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

Side by Side Diff: mojo/BUILD.gn

Issue 687273002: mojo: Update content handler API (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rename content_handler.h 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo.gni") 6 import("//mojo/public/mojo.gni")
7 7
8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. 8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn.
9 group("mojo") { 9 group("mojo") {
10 # Meta-target, don't link into production code. 10 # Meta-target, don't link into production code.
11 testonly = true 11 testonly = true
12 declare_args() { 12 declare_args() {
13 mojo_use_go = false 13 mojo_use_go = false
14 } 14 }
15 deps = [ 15 deps = [
16 ":tests", 16 ":tests",
17 "//examples", 17 "//examples",
18 "//mojo/apps/js:js_content_handler", 18 "//mojo/apps/js:js_content_handler",
19 "//mojo/apps/js:js_standalone",
20 "//mojo/common", 19 "//mojo/common",
21 "//mojo/public", 20 "//mojo/public",
22 "//mojo/services", 21 "//mojo/services",
23 "//mojo/tools/package_manager", 22 "//mojo/tools/package_manager",
24 "//services", 23 "//services",
25 ] 24 ]
26 25
27 if (use_prebuilt_mojo_shell) { 26 if (use_prebuilt_mojo_shell) {
28 deps += [ "//mojo/public/tools:copy_mojo_shell" ] 27 deps += [ "//mojo/public/tools:copy_mojo_shell" ]
29 } else { 28 } else {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 sources = [ 87 sources = [
89 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 88 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
90 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , 89 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" ,
91 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 90 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
92 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 91 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
93 ] 92 ]
94 93
95 jni_package = "mojo" 94 jni_package = "mojo"
96 } 95 }
97 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698