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

Side by Side Diff: mojo/BUILD.gn

Issue 724243002: Add a startup benchmark and rudimentary scripts for running benchmarks. (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("//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 "//benchmarks",
17 "//examples", 18 "//examples",
18 "//mojo/common", 19 "//mojo/common",
19 "//mojo/public", 20 "//mojo/public",
20 "//mojo/services", 21 "//mojo/services",
21 "//mojo/tools/package_manager", 22 "//mojo/tools/package_manager",
22 "//services", 23 "//services",
23 ] 24 ]
24 25
25 if (use_prebuilt_mojo_shell) { 26 if (use_prebuilt_mojo_shell) {
26 deps += [ "//mojo/public/tools:copy_mojo_shell" ] 27 deps += [ "//mojo/public/tools:copy_mojo_shell" ]
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 sources = [ 110 sources = [
110 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 111 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
111 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , 112 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" ,
112 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 113 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
113 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 114 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
114 ] 115 ]
115 116
116 jni_package = "mojo" 117 jni_package = "mojo"
117 } 118 }
118 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698