OLD | NEW |
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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
8 | 8 |
9 # Applied by targets internal to content. | 9 # Applied by targets internal to content. |
10 config("content_implementation") { | 10 config("content_implementation") { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 ] | 83 ] |
84 } | 84 } |
85 } else if (is_nacl_nonsfi) { | 85 } else if (is_nacl_nonsfi) { |
86 source_set("content") { | 86 source_set("content") { |
87 set_sources_assignment_filter([]) | 87 set_sources_assignment_filter([]) |
88 sources = [ | 88 sources = [ |
89 "common/sandbox_linux/sandbox_init_linux.cc", | 89 "common/sandbox_linux/sandbox_init_linux.cc", |
90 "common/sandbox_linux/sandbox_seccomp_bpf_linux.cc", | 90 "common/sandbox_linux/sandbox_seccomp_bpf_linux.cc", |
91 "common/send_zygote_child_ping_linux.cc", | 91 "common/send_zygote_child_ping_linux.cc", |
92 "public/common/content_switches.cc", | 92 "public/common/content_switches.cc", |
| 93 "public/common/content_switches.h", |
93 "public/common/mojo_channel_switches.cc", | 94 "public/common/mojo_channel_switches.cc", |
| 95 "public/common/mojo_channel_switches.h", |
94 ] | 96 ] |
95 set_sources_assignment_filter(sources_assignment_filter) | 97 set_sources_assignment_filter(sources_assignment_filter) |
96 | 98 |
97 defines = [ "USE_SECCOMP_BPF=1" ] | 99 defines = [ "USE_SECCOMP_BPF=1" ] |
98 | 100 |
99 deps = [ | 101 deps = [ |
100 "//base", | 102 "//base", |
101 "//media:media_features", | 103 "//media:media_features", |
102 "//sandbox/linux:sandbox", | 104 "//sandbox/linux:sandbox", |
103 ] | 105 ] |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 sources = [ | 149 sources = [ |
148 "app/sandbox_helper_win.cc", | 150 "app/sandbox_helper_win.cc", |
149 "public/app/sandbox_helper_win.h", | 151 "public/app/sandbox_helper_win.h", |
150 ] | 152 ] |
151 | 153 |
152 deps = [ | 154 deps = [ |
153 "//sandbox", | 155 "//sandbox", |
154 ] | 156 ] |
155 } | 157 } |
156 } | 158 } |
OLD | NEW |