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

Side by Side Diff: mojo/BUILD.gn

Issue 2051163002: Nuke NaCl SFI, part 1. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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 | « build/config/nacl/config.gni ('k') | mojo/nacl/sfi/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/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//build/module_args/mojo.gni") 6 import("//build/module_args/mojo.gni")
7 import("//mojo/public/mojo.gni") 7 import("//mojo/public/mojo.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 declare_args() { 10 declare_args() {
(...skipping 22 matching lines...) Expand all
33 33
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 if (mojo_use_nacl_sfi) {
44 deps += [
45 "//mojo/nacl/sfi:mojo_nacl",
46 "//mojo/nacl/sfi:mojo_nacl_tests_sfi",
47 ]
48 }
49
50 if (mojo_use_nacl_nonsfi) { 43 if (mojo_use_nacl_nonsfi) {
51 deps += [ 44 deps += [
52 "//mojo/nacl/nonsfi:mojo_nacl", 45 "//mojo/nacl/nonsfi:mojo_nacl",
53 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", 46 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi",
54 ] 47 ]
55 } 48 }
56 } 49 }
57 } 50 }
58 51
59 group("tests") { 52 group("tests") {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "//mojo/public/cpp/utility/tests", 162 "//mojo/public/cpp/utility/tests",
170 ] 163 ]
171 } 164 }
172 165
173 test("mojo_system_impl_private_unittests") { 166 test("mojo_system_impl_private_unittests") {
174 deps = [ 167 deps = [
175 "//mojo/edk/test:run_all_unittests", 168 "//mojo/edk/test:run_all_unittests",
176 "//mojo/public/platform/native:system_impl_private_tests", 169 "//mojo/public/platform/native:system_impl_private_tests",
177 ] 170 ]
178 } 171 }
OLDNEW
« no previous file with comments | « build/config/nacl/config.gni ('k') | mojo/nacl/sfi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698