| 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 23 matching lines...) Expand all Loading... |
| 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 "../..", | 43 "../..", |
| 44 # FIXME: Remove these once core scripts generates qualified | 44 # FIXME: Remove two lines below once core scripts generates qualified |
| 45 # includes correctly: http://crbug.com/358074 | 45 # includes correctly: http://crbug.com/358074 |
| 46 blink_modules_output_dir, | |
| 47 bindings_core_v8_output_dir, | 46 bindings_core_v8_output_dir, |
| 48 bindings_modules_v8_output_dir, | 47 bindings_modules_v8_output_dir, |
| 49 # FIXME: MediaQueryListListener.cpp includes | |
| 50 # "gen/blink/bindings/core/v8/V8MediaQueryList.h" relative to "gen/blink" | |
| 51 # which is busted. This file (and any other ones that do a similar thing) | |
| 52 # should be fixed and this can be removed. | |
| 53 "$root_gen_dir/blink", | 48 "$root_gen_dir/blink", |
| 54 ] | 49 ] |
| 55 if (is_android && use_openmax_dl_fft) { | 50 if (is_android && use_openmax_dl_fft) { |
| 56 include_dirs += [ "//third_party/openmax_dl" ] | 51 include_dirs += [ "//third_party/openmax_dl" ] |
| 57 } | 52 } |
| 58 } | 53 } |
| 59 | 54 |
| 60 # GYP version: WebKit/Source/core/core.gyp:webcore_generated | 55 # GYP version: WebKit/Source/core/core.gyp:webcore_generated |
| 61 source_set("generated") { | 56 source_set("generated") { |
| 62 deps = [ | 57 deps = [ |
| (...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 "$blink_core_output_dir/{{source_name_part}}.h", | 1057 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1063 ] | 1058 ] |
| 1064 args = [ | 1059 args = [ |
| 1065 "{{source}}", | 1060 "{{source}}", |
| 1066 rel_blink_core_gen_dir, | 1061 rel_blink_core_gen_dir, |
| 1067 bison_exe, | 1062 bison_exe, |
| 1068 ] | 1063 ] |
| 1069 | 1064 |
| 1070 deps = make_core_generated_deps | 1065 deps = make_core_generated_deps |
| 1071 } | 1066 } |
| OLD | NEW |