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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "//third_party/WebKit/Source/platform", | 106 "//third_party/WebKit/Source/platform", |
107 ] + exported_deps | 107 ] + exported_deps |
108 | 108 |
109 forward_dependent_configs_from = exported_deps | 109 forward_dependent_configs_from = exported_deps |
110 | 110 |
111 direct_dependent_configs = [ | 111 direct_dependent_configs = [ |
112 ":core_include_dirs", | 112 ":core_include_dirs", |
113 "//third_party/WebKit/Source:config", | 113 "//third_party/WebKit/Source:config", |
114 "//third_party/WebKit/Source:inside_blink", | 114 "//third_party/WebKit/Source:inside_blink", |
115 ] | 115 ] |
| 116 |
| 117 if (use_openmax_dl_fft) { |
| 118 deps += [ |
| 119 "//third_party/openmax_dl/dl" |
| 120 ] |
| 121 } |
116 } | 122 } |
117 | 123 |
118 # Note that this is a source set rather than a group, even though it has no | 124 # Note that this is a source set rather than a group, even though it has no |
119 # sources. A group would implicitly forward all direct dependent configs | 125 # sources. A group would implicitly forward all direct dependent configs |
120 # through it, but we want to keep our internal targets' | 126 # through it, but we want to keep our internal targets' |
121 # direct_dependent_configs private and only forward some of them. | 127 # direct_dependent_configs private and only forward some of them. |
122 # | 128 # |
123 # GYP version: WebKit/Source/core/core.gyp:webcore | 129 # GYP version: WebKit/Source/core/core.gyp:webcore |
124 source_set("core") { | 130 source_set("core") { |
125 visibility = [] # Allow re-assignment of list. | 131 visibility = [] # Allow re-assignment of list. |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 "$blink_core_output_dir/{{source_name_part}}.h", | 1069 "$blink_core_output_dir/{{source_name_part}}.h", |
1064 ] | 1070 ] |
1065 args = [ | 1071 args = [ |
1066 "{{source}}", | 1072 "{{source}}", |
1067 rel_blink_core_gen_dir, | 1073 rel_blink_core_gen_dir, |
1068 bison_exe, | 1074 bison_exe, |
1069 ] | 1075 ] |
1070 | 1076 |
1071 deps = make_core_generated_deps | 1077 deps = make_core_generated_deps |
1072 } | 1078 } |
OLD | NEW |