Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: Source/core/BUILD.gn

Issue 344483003: Remove gen/blink/core from build files since all includes have been qualified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix builds Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/build/scripts/templates/MakeNames.h.tmpl ('k') | Source/core/core.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 these once core scripts generates qualified
45 # includes correctly: http://crbug.com/358074 45 # includes correctly: http://crbug.com/358074
46 blink_core_output_dir,
47 blink_modules_output_dir, 46 blink_modules_output_dir,
48 bindings_core_v8_output_dir, 47 bindings_core_v8_output_dir,
49 bindings_modules_v8_output_dir, 48 bindings_modules_v8_output_dir,
50 # FIXME: MediaQueryListListener.cpp includes 49 # FIXME: MediaQueryListListener.cpp includes
51 # "gen/blink/bindings/core/v8/V8MediaQueryList.h" relative to "gen/blink" 50 # "gen/blink/bindings/core/v8/V8MediaQueryList.h" relative to "gen/blink"
52 # which is busted. This file (and any other ones that do a similar thing) 51 # which is busted. This file (and any other ones that do a similar thing)
53 # should be fixed and this can be removed. 52 # should be fixed and this can be removed.
54 "$root_gen_dir/blink", 53 "$root_gen_dir/blink",
55 ] 54 ]
56 if (is_android && use_openmax_dl_fft) { 55 if (is_android && use_openmax_dl_fft) {
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/MakeNames.h.tmpl ('k') | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698