| 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 22 matching lines...) Expand all Loading... |
| 33 core_config_add = core_config_remove # NOP | 33 core_config_add = core_config_remove # NOP |
| 34 } | 34 } |
| 35 } | 35 } |
| 36 | 36 |
| 37 # Core targets also get wexit time destructors. | 37 # Core targets also get wexit time destructors. |
| 38 core_config_add += [ "//build/config/compiler:wexit_time_destructors" ] | 38 core_config_add += [ "//build/config/compiler:wexit_time_destructors" ] |
| 39 | 39 |
| 40 config("core_include_dirs") { | 40 config("core_include_dirs") { |
| 41 include_dirs = [ | 41 include_dirs = [ |
| 42 "..", | 42 "..", |
| 43 "../..", | |
| 44 "$root_gen_dir/blink", | 43 "$root_gen_dir/blink", |
| 45 ] | 44 ] |
| 46 if (is_android && use_openmax_dl_fft) { | 45 if (is_android && use_openmax_dl_fft) { |
| 47 include_dirs += [ "//third_party/openmax_dl" ] | 46 include_dirs += [ "//third_party/openmax_dl" ] |
| 48 } | 47 } |
| 49 } | 48 } |
| 50 | 49 |
| 51 # GYP version: WebKit/Source/core/core.gyp:webcore_generated | 50 # GYP version: WebKit/Source/core/core.gyp:webcore_generated |
| 52 source_set("generated") { | 51 source_set("generated") { |
| 53 deps = [ | 52 deps = [ |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1114 "$blink_core_output_dir/{{source_name_part}}.h", | 1113 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1115 ] | 1114 ] |
| 1116 args = [ | 1115 args = [ |
| 1117 "{{source}}", | 1116 "{{source}}", |
| 1118 rel_blink_core_gen_dir, | 1117 rel_blink_core_gen_dir, |
| 1119 bison_exe, | 1118 bison_exe, |
| 1120 ] | 1119 ] |
| 1121 | 1120 |
| 1122 deps = make_core_generated_deps | 1121 deps = make_core_generated_deps |
| 1123 } | 1122 } |
| OLD | NEW |