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

Side by Side Diff: components/nacl/browser/BUILD.gn

Issue 2305913002: Use ChannelMojo from the browser to NaCl loader process. (Closed)
Patch Set: Created 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/features.gni") 5 import("//build/config/features.gni")
6 6
7 assert(enable_nacl) 7 assert(enable_nacl)
8 8
9 static_library("browser") { 9 static_library("browser") {
10 sources = [ 10 sources = [
(...skipping 21 matching lines...) Expand all
32 32
33 deps = [ 33 deps = [
34 "//base", 34 "//base",
35 "//base/third_party/dynamic_annotations", 35 "//base/third_party/dynamic_annotations",
36 "//components/nacl/common", 36 "//components/nacl/common",
37 "//components/nacl/common:debug_exception_handler", 37 "//components/nacl/common:debug_exception_handler",
38 "//components/url_formatter", 38 "//components/url_formatter",
39 "//content/public/browser", 39 "//content/public/browser",
40 "//content/public/common", 40 "//content/public/common",
41 "//ipc", 41 "//ipc",
42 "//mojo/edk/system",
42 "//native_client/src/trusted/service_runtime:sel_main_chrome", 43 "//native_client/src/trusted/service_runtime:sel_main_chrome",
43 "//net", 44 "//net",
44 "//ppapi/host", 45 "//ppapi/host",
45 "//ppapi/proxy:ipc", 46 "//ppapi/proxy:ipc",
46 "//ppapi/shared_impl", 47 "//ppapi/shared_impl",
47 ] 48 ]
48 49
49 data_deps = [] 50 data_deps = []
50 51
51 if (is_linux) { 52 if (is_linux) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//base", 87 "//base",
87 "//components/nacl/common", 88 "//components/nacl/common",
88 "//content/test:test_support", 89 "//content/test:test_support",
89 "//net:test_support", 90 "//net:test_support",
90 ] 91 ]
91 92
92 if (is_linux) { 93 if (is_linux) {
93 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] 94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ]
94 } 95 }
95 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698