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

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

Issue 355193003: Qualify the bindings include files and remove the bindings sub-dirs from build files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
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 22 matching lines...) Expand all
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 "../..", 43 "../..",
Nils Barth (inactive) 2014/06/30 02:19:53 Is this "../.." needed? (I think it's cruft, as it
c.shu 2014/06/30 19:46:07 Done.
44 # FIXME: Remove two lines below once core scripts generates qualified
45 # includes correctly: http://crbug.com/358074
46 bindings_core_v8_output_dir,
47 bindings_modules_v8_output_dir,
48 "$root_gen_dir/blink", 44 "$root_gen_dir/blink",
49 ] 45 ]
50 if (is_android && use_openmax_dl_fft) { 46 if (is_android && use_openmax_dl_fft) {
51 include_dirs += [ "//third_party/openmax_dl" ] 47 include_dirs += [ "//third_party/openmax_dl" ]
52 } 48 }
53 } 49 }
54 50
55 # GYP version: WebKit/Source/core/core.gyp:webcore_generated 51 # GYP version: WebKit/Source/core/core.gyp:webcore_generated
56 source_set("generated") { 52 source_set("generated") {
57 deps = [ 53 deps = [
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 "$blink_core_output_dir/{{source_name_part}}.h", 1114 "$blink_core_output_dir/{{source_name_part}}.h",
1119 ] 1115 ]
1120 args = [ 1116 args = [
1121 "{{source}}", 1117 "{{source}}",
1122 rel_blink_core_gen_dir, 1118 rel_blink_core_gen_dir,
1123 bison_exe, 1119 bison_exe,
1124 ] 1120 ]
1125 1121
1126 deps = make_core_generated_deps 1122 deps = make_core_generated_deps
1127 } 1123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698