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 | 7 |
8 # Applied by targets internal to content. | 8 # Applied by targets internal to content. |
9 config("content_implementation") { | 9 config("content_implementation") { |
10 defines = [ "CONTENT_IMPLEMENTATION" ] | 10 defines = [ "CONTENT_IMPLEMENTATION" ] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 set_sources_assignment_filter(sources_assignment_filter) | 75 set_sources_assignment_filter(sources_assignment_filter) |
76 | 76 |
77 defines = [ "USE_SECCOMP_BPF=1" ] | 77 defines = [ "USE_SECCOMP_BPF=1" ] |
78 | 78 |
79 deps = [ | 79 deps = [ |
80 "//base", | 80 "//base", |
81 ] | 81 ] |
82 } | 82 } |
83 } else { | 83 } else { |
84 group("content") { | 84 group("content") { |
85 deps = content_shared_components | 85 public_deps = content_shared_components |
86 } | 86 } |
87 } | 87 } |
88 | 88 |
89 grit("resources") { | 89 grit("resources") { |
90 source = "content_resources.grd" | 90 source = "content_resources.grd" |
91 use_qualified_include = true | 91 use_qualified_include = true |
92 outputs = [ | 92 outputs = [ |
93 "grit/content_resources.h", | 93 "grit/content_resources.h", |
94 "content_resources.pak", | 94 "content_resources.pak", |
95 ] | 95 ] |
(...skipping 16 matching lines...) Expand all Loading... |
112 sources = [ | 112 sources = [ |
113 "app/sandbox_helper_win.cc", | 113 "app/sandbox_helper_win.cc", |
114 "public/app/sandbox_helper_win.h", | 114 "public/app/sandbox_helper_win.h", |
115 ] | 115 ] |
116 | 116 |
117 deps = [ | 117 deps = [ |
118 "//sandbox", | 118 "//sandbox", |
119 ] | 119 ] |
120 } | 120 } |
121 } | 121 } |
OLD | NEW |