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

Side by Side Diff: mojo/BUILD.gn

Issue 1398213003: Refactored Non-SFI and SFI NaCl into separate directories. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 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 | « PRESUBMIT.py ('k') | mojo/nacl/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 import("//build/module_args/mojo.gni") 5 import("//build/module_args/mojo.gni")
6 import("//mojo/public/mojo.gni") 6 import("//mojo/public/mojo.gni")
7 7
8 group("mojo") { 8 group("mojo") {
9 # Meta-target, don't link into production code. 9 # Meta-target, don't link into production code.
10 testonly = true 10 testonly = true
(...skipping 23 matching lines...) Expand all
34 if (is_linux && mojo_use_go) { 34 if (is_linux && mojo_use_go) {
35 deps += [ "//mojo/go" ] 35 deps += [ "//mojo/go" ]
36 } 36 }
37 37
38 if (is_linux && !is_fnl) { 38 if (is_linux && !is_fnl) {
39 deps += [ "//mojo/python" ] 39 deps += [ "//mojo/python" ]
40 } 40 }
41 41
42 if (mojo_use_nacl) { 42 if (mojo_use_nacl) {
43 deps += [ 43 deps += [
44 "//mojo/nacl:mojo_nacl", 44 "//mojo/nacl/sfi:mojo_nacl",
45 "//mojo/nacl:mojo_nacl_tests", 45 "//mojo/nacl/sfi:mojo_nacl_tests",
46 ] 46 ]
47 } 47 }
48 48
49 if (mojo_use_nacl_nonsfi) { 49 if (mojo_use_nacl_nonsfi) {
50 deps += [ 50 deps += [
51 "//mojo/nacl:mojo_nacl_nonsfi", 51 "//mojo/nacl/nonsfi:mojo_nacl_nonsfi",
52 "//mojo/nacl:mojo_nacl_tests_nonsfi", 52 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi",
53 ] 53 ]
54 } 54 }
55 } 55 }
56 56
57 group("tests") { 57 group("tests") {
58 testonly = true 58 testonly = true
59 deps = [ 59 deps = [
60 "//mojo/common:mojo_common_unittests", 60 "//mojo/common:mojo_common_unittests",
61 "//mojo/edk/system:tests", 61 "//mojo/edk/system:tests",
62 "//mojo/edk/test:public_tests", 62 "//mojo/edk/test:public_tests",
63 "//mojo/dart/embedder/test:dart_unittests", 63 "//mojo/dart/embedder/test:dart_unittests",
64 "//mojo/public/cpp/bindings/tests:versioning_apptests", 64 "//mojo/public/cpp/bindings/tests:versioning_apptests",
65 "//mojo/services/view_manager/cpp/tests:mojo_view_manager_lib_unittests", 65 "//mojo/services/view_manager/cpp/tests:mojo_view_manager_lib_unittests",
66 "//mojo/tests:mojo_task_tracker_perftests", 66 "//mojo/tests:mojo_task_tracker_perftests",
67 "//mojo/tools:message_generator", 67 "//mojo/tools:message_generator",
68 "//mojo/gles2:mgl_unittests", 68 "//mojo/gles2:mgl_unittests",
69 "//mojo/gpu:apptests", 69 "//mojo/gpu:apptests",
70 "//mojo/services/files/c:apptests", 70 "//mojo/services/files/c:apptests",
71 "//mojo/services/files/cpp:files_impl_apptests", 71 "//mojo/services/files/cpp:files_impl_apptests",
72 ] 72 ]
73 73
74 if (is_linux || is_android) { 74 if (is_linux || is_android) {
75 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] 75 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ]
76 } 76 }
77 77
78 if (mojo_use_prebuilt_network_service) { 78 if (mojo_use_prebuilt_network_service) {
79 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] 79 deps += [ "//mojo/public/tools:copy_network_service_apptests" ]
80 } 80 }
81 } 81 }
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | mojo/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698