| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |