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

Side by Side Diff: mojo/BUILD.gn

Issue 556813003: Add Go build support for GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 6
7 group("mojo") { 7 group("mojo") {
8 deps = [ 8 deps = [
9 ":tests", 9 ":tests",
10 "//mojo/common", 10 "//mojo/common",
11 "//mojo/examples", 11 "//mojo/examples",
12 "//mojo/public", 12 "//mojo/public",
13 "//mojo/services", 13 "//mojo/services",
14 "//mojo/shell:mojo_shell", 14 "//mojo/shell:mojo_shell",
15 ] 15 ]
16 16
17 if (is_linux) { 17 if (is_linux) {
18 deps += [ 18 deps += [
19 "//mojo/python", 19 "//mojo/python",
brettw 2014/09/16 22:58:55 Sort
tburkard 2014/09/17 12:06:45 Done.
20 "//mojo/go",
20 ] 21 ]
21 } 22 }
22 } 23 }
23 24
24 group("tests") { 25 group("tests") {
25 deps = [ 26 deps = [
26 "//mojo/application_manager:mojo_application_manager_unittests", 27 "//mojo/application_manager:mojo_application_manager_unittests",
27 "//mojo/apps/js/test:mojo_apps_js_unittests", 28 "//mojo/apps/js/test:mojo_apps_js_unittests",
28 "//mojo/common:mojo_common_unittests", 29 "//mojo/common:mojo_common_unittests",
29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", 30 "//mojo/public/cpp/application/tests:mojo_public_application_unittests",
(...skipping 24 matching lines...) Expand all
54 sources = [ 55 sources = [
55 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 56 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
56 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , 57 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" ,
57 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 58 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
58 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 59 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
59 ] 60 ]
60 61
61 jni_package = "mojo" 62 jni_package = "mojo"
62 } 63 }
63 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698