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 377293002: Core mojo API for python. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependency issue Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | mojo/mojo.gyp » ('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 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
17 if (is_linux) {
18 deps += [
19 "//mojo/python",
20 ]
21 }
16 } 22 }
17 23
18 group("tests") { 24 group("tests") {
19 deps = [ 25 deps = [
20 "//mojo/application_manager:mojo_application_manager_unittests", 26 "//mojo/application_manager:mojo_application_manager_unittests",
21 "//mojo/apps/js/test:mojo_apps_js_unittests", 27 "//mojo/apps/js/test:mojo_apps_js_unittests",
22 "//mojo/common:mojo_common_unittests", 28 "//mojo/common:mojo_common_unittests",
23 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", 29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests",
24 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", 30 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests",
25 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", 31 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests",
(...skipping 20 matching lines...) Expand all
46 generate_jni("jni_headers") { 52 generate_jni("jni_headers") {
47 sources = [ 53 sources = [
48 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 54 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
49 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 55 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
50 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 56 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
51 ] 57 ]
52 58
53 jni_package = "mojo" 59 jni_package = "mojo"
54 } 60 }
55 } 61 }
OLDNEW
« no previous file with comments | « no previous file | mojo/mojo.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698