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 | 6 |
7 # Applied by targets internal to content. | 7 # Applied by targets internal to content. |
8 config("content_implementation") { | 8 config("content_implementation") { |
9 defines = [ "CONTENT_IMPLEMENTATION" ] | 9 defines = [ "CONTENT_IMPLEMENTATION" ] |
10 } | 10 } |
(...skipping 20 matching lines...) Expand all Loading... |
31 forward_dependent_configs_from = deps | 31 forward_dependent_configs_from = deps |
32 } | 32 } |
33 } else { | 33 } else { |
34 group("content") { | 34 group("content") { |
35 deps = content_shared_components | 35 deps = content_shared_components |
36 } | 36 } |
37 } | 37 } |
38 | 38 |
39 grit("resources") { | 39 grit("resources") { |
40 source = "content_resources.grd" | 40 source = "content_resources.grd" |
| 41 use_qualified_include = true |
41 outputs = [ | 42 outputs = [ |
42 "grit/content_resources.h", | 43 "grit/content_resources.h", |
43 "content_resources.pak", | 44 "content_resources.pak", |
44 "content_resources.rc", | 45 "content_resources.rc", |
45 ] | 46 ] |
46 } | 47 } |
47 | 48 |
48 # This target exists to "hold" the content_export header so we can do proper | 49 # This target exists to "hold" the content_export header so we can do proper |
49 # inclusion testing of it. | 50 # inclusion testing of it. |
50 source_set("export") { | 51 source_set("export") { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 import("//build/config/crypto.gni") | 123 import("//build/config/crypto.gni") |
123 if (use_openssl) { | 124 if (use_openssl) { |
124 defines += [ "WEBRTC_ANDROID_OPENSLEQS" ] | 125 defines += [ "WEBRTC_ANDROID_OPENSLEQS" ] |
125 } | 126 } |
126 } | 127 } |
127 | 128 |
128 if (is_posix) { | 129 if (is_posix) { |
129 defines += [ "WEBRTC_POSIX" ] | 130 defines += [ "WEBRTC_POSIX" ] |
130 } | 131 } |
131 } | 132 } |
OLD | NEW |