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

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

Issue 2514323004: Convert NaCl renderer-browser messages to mojo. (Closed)
Patch Set: rebase Created 3 years, 11 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 = [
11 "bad_message.cc", 11 "bad_message.cc",
12 "bad_message.h", 12 "bad_message.h",
13 "nacl_broker_host_win.cc", 13 "nacl_broker_host_win.cc",
14 "nacl_broker_host_win.h", 14 "nacl_broker_host_win.h",
15 "nacl_broker_service_win.cc", 15 "nacl_broker_service_win.cc",
16 "nacl_broker_service_win.h", 16 "nacl_broker_service_win.h",
17 "nacl_browser.cc", 17 "nacl_browser.cc",
18 "nacl_browser.h", 18 "nacl_browser.h",
19 "nacl_file_host.cc", 19 "nacl_file_host.cc",
20 "nacl_file_host.h", 20 "nacl_file_host.h",
21 "nacl_host_message_filter.cc", 21 "nacl_host_impl.cc",
22 "nacl_host_message_filter.h", 22 "nacl_host_impl.h",
23 "nacl_process_host.cc", 23 "nacl_process_host.cc",
24 "nacl_process_host.h", 24 "nacl_process_host.h",
25 "nacl_validation_cache.cc", 25 "nacl_validation_cache.cc",
26 "nacl_validation_cache.h", 26 "nacl_validation_cache.h",
27 "pnacl_host.cc", 27 "pnacl_host.cc",
28 "pnacl_host.h", 28 "pnacl_host.h",
29 "pnacl_translation_cache.cc", 29 "pnacl_translation_cache.cc",
30 "pnacl_translation_cache.h", 30 "pnacl_translation_cache.h",
31 ] 31 ]
32 32
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "//base", 87 "//base",
88 "//components/nacl/common", 88 "//components/nacl/common",
89 "//content/test:test_support", 89 "//content/test:test_support",
90 "//net:test_support", 90 "//net:test_support",
91 ] 91 ]
92 92
93 if (is_linux) { 93 if (is_linux) {
94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] 94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ]
95 } 95 }
96 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698