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

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

Issue 360353002: Move core/WebCorePrefixMac.h to build/mac/Prefix.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix gn build 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/config.h ('k') | Source/core/WebCorePrefixMac.h » ('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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 "rendering/RenderThemeChromiumFontProvider.cpp", 270 "rendering/RenderThemeChromiumFontProvider.cpp",
271 "rendering/RenderThemeChromiumFontProvider.h", 271 "rendering/RenderThemeChromiumFontProvider.h",
272 "rendering/RenderThemeChromiumSkia.cpp", 272 "rendering/RenderThemeChromiumSkia.cpp",
273 "rendering/RenderThemeChromiumSkia.h", 273 "rendering/RenderThemeChromiumSkia.h",
274 ] 274 ]
275 libs += [ "Carbon.framework" ] 275 libs += [ "Carbon.framework" ]
276 # Some Mac-specific parts of WebKit won't compile without having this 276 # Some Mac-specific parts of WebKit won't compile without having this
277 # prefix header injected. 277 # prefix header injected.
278 cflags = [ 278 cflags = [
279 "-include", 279 "-include",
280 rebase_path("WebCorePrefixMac.h", root_build_dir), 280 rebase_path("../build/mac/Prefix.h", root_build_dir),
281 ] 281 ]
282 } else { # !is_mac 282 } else { # !is_mac
283 sources -= [ 283 sources -= [
284 "editing/SmartReplaceCF.cpp", 284 "editing/SmartReplaceCF.cpp",
285 ] 285 ]
286 } 286 }
287 287
288 if (!use_default_render_theme) { 288 if (!use_default_render_theme) {
289 sources -= [ 289 sources -= [
290 "rendering/RenderThemeChromiumDefault.cpp", 290 "rendering/RenderThemeChromiumDefault.cpp",
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 "$blink_core_output_dir/{{source_name_part}}.h", 1114 "$blink_core_output_dir/{{source_name_part}}.h",
1115 ] 1115 ]
1116 args = [ 1116 args = [
1117 "{{source}}", 1117 "{{source}}",
1118 rel_blink_core_gen_dir, 1118 rel_blink_core_gen_dir,
1119 bison_exe, 1119 bison_exe,
1120 ] 1120 ]
1121 1121
1122 deps = make_core_generated_deps 1122 deps = make_core_generated_deps
1123 } 1123 }
OLDNEW
« no previous file with comments | « Source/config.h ('k') | Source/core/WebCorePrefixMac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698