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

Side by Side Diff: Source/platform/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/core/core.gyp ('k') | Source/platform/blink_platform.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/build/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/config.gni") 7 import("//third_party/WebKit/Source/config.gni")
8 import("//third_party/WebKit/Source/platform/platform.gni") 8 import("//third_party/WebKit/Source/platform/platform.gni")
9 import("//third_party/WebKit/Source/platform/platform_generated.gni") 9 import("//third_party/WebKit/Source/platform/platform_generated.gni")
10 import("//third_party/yasm/yasm_assemble.gni") 10 import("//third_party/yasm/yasm_assemble.gni")
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 "scroll/ScrollbarThemeNonMacCommon.cpp", 242 "scroll/ScrollbarThemeNonMacCommon.cpp",
243 "scroll/ScrollbarThemeNonMacCommon.h", 243 "scroll/ScrollbarThemeNonMacCommon.h",
244 "scroll/ScrollAnimatorNone.cpp", 244 "scroll/ScrollAnimatorNone.cpp",
245 "scroll/ScrollAnimatorNone.h", 245 "scroll/ScrollAnimatorNone.h",
246 ] 246 ]
247 247
248 # Some Mac-specific parts of WebKit won't compile without having this 248 # Some Mac-specific parts of WebKit won't compile without having this
249 # prefix header injected. 249 # prefix header injected.
250 cflags = [ 250 cflags = [
251 "-include", 251 "-include",
252 rebase_path("../core/WebCorePrefixMac.h", root_build_dir), 252 rebase_path("../build/mac/Prefix.h", root_build_dir),
253 ] 253 ]
254 254
255 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ] 255 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ]
256 configs += [ ":mac_objc_renaming" ] 256 configs += [ ":mac_objc_renaming" ]
257 libs = [ 257 libs = [
258 "Accelerate.framework", 258 "Accelerate.framework",
259 "Carbon.framework", 259 "Carbon.framework",
260 "Foundation.framework", 260 "Foundation.framework",
261 ] 261 ]
262 } else { 262 } else {
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 #'cflags': ['-marm'], 469 #'cflags': ['-marm'],
470 # 'conditions': [ 470 # 'conditions': [
471 # ['OS=="android"', { 471 # ['OS=="android"', {
472 # 'cflags!': ['-mthumb'], 472 # 'cflags!': ['-mthumb'],
473 # }], 473 # }],
474 # ], 474 # ],
475 475
476 deps = [ ":blink_common" ] 476 deps = [ ":blink_common" ]
477 } 477 }
478 } 478 }
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/platform/blink_platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698