| 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 25 matching lines...) Expand all Loading... |
| 36 core_config_add += [ "//build/config/compiler:wexit_time_destructors" ] | 36 core_config_add += [ "//build/config/compiler:wexit_time_destructors" ] |
| 37 | 37 |
| 38 config("core_include_dirs") { | 38 config("core_include_dirs") { |
| 39 include_dirs = [ | 39 include_dirs = [ |
| 40 "..", | 40 "..", |
| 41 "../..", | 41 "../..", |
| 42 # FIXME: Remove these once core scripts generates qualified | 42 # FIXME: Remove these once core scripts generates qualified |
| 43 # includes correctly: http://crbug.com/358074 | 43 # includes correctly: http://crbug.com/358074 |
| 44 blink_core_output_dir, | 44 blink_core_output_dir, |
| 45 blink_modules_output_dir, | 45 blink_modules_output_dir, |
| 46 blink_platform_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 | 48 # FIXME: MediaQueryListListener.cpp includes |
| 50 # "gen/blink/bindings/core/v8/V8MediaQueryList.h" relative to "gen/blink" | 49 # "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) | 50 # which is busted. This file (and any other ones that do a similar thing) |
| 52 # should be fixed and this can be removed. | 51 # should be fixed and this can be removed. |
| 53 "$root_gen_dir/blink", | 52 "$root_gen_dir/blink", |
| 54 ] | 53 ] |
| 55 if (is_android && use_openmax_dl_fft) { | 54 if (is_android && use_openmax_dl_fft) { |
| 56 include_dirs += [ "//third_party/openmax_dl" ] | 55 include_dirs += [ "//third_party/openmax_dl" ] |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 "$blink_core_output_dir/{{source_name_part}}.h", | 1062 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1064 ] | 1063 ] |
| 1065 args = [ | 1064 args = [ |
| 1066 "{{source}}", | 1065 "{{source}}", |
| 1067 rel_blink_core_gen_dir, | 1066 rel_blink_core_gen_dir, |
| 1068 bison_exe, | 1067 bison_exe, |
| 1069 ] | 1068 ] |
| 1070 | 1069 |
| 1071 deps = make_core_generated_deps | 1070 deps = make_core_generated_deps |
| 1072 } | 1071 } |
| OLD | NEW |