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

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

Issue 360053004: Fix some nits as a follow-up for issue 355193003. (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
« no previous file with comments | « Source/build/scripts/name_macros.py ('k') | no next file » | 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 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 "../..",
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
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 }
OLDNEW
« no previous file with comments | « Source/build/scripts/name_macros.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698