| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/platform/platform.gni") | 9 import("//third_party/WebKit/Source/platform/platform.gni") |
| 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 "scroll/ScrollAnimator.cpp", | 364 "scroll/ScrollAnimator.cpp", |
| 365 "scroll/ScrollAnimator.h", | 365 "scroll/ScrollAnimator.h", |
| 366 | 366 |
| 367 # Uses LocaleMac instead. | 367 # Uses LocaleMac instead. |
| 368 "text/LocaleICU.cpp", | 368 "text/LocaleICU.cpp", |
| 369 "text/LocaleICU.h", | 369 "text/LocaleICU.h", |
| 370 ] | 370 ] |
| 371 | 371 |
| 372 configs += [ "//third_party/WebKit/Source:mac_precompiled_headers" ] | 372 configs += [ "//third_party/WebKit/Source:mac_precompiled_headers" ] |
| 373 libs = [ | 373 libs = [ |
| 374 "AppKit.framework", |
| 374 "Accelerate.framework", | 375 "Accelerate.framework", |
| 375 "Carbon.framework", | 376 "Carbon.framework", |
| 376 "Foundation.framework", | 377 "Foundation.framework", |
| 377 ] | 378 ] |
| 378 } else { | 379 } else { |
| 379 sources -= [ | 380 sources -= [ |
| 380 "geometry/cg/FloatPointCG.cpp", | 381 "geometry/cg/FloatPointCG.cpp", |
| 381 "geometry/cg/FloatRectCG.cpp", | 382 "geometry/cg/FloatRectCG.cpp", |
| 382 "geometry/cg/FloatSizeCG.cpp", | 383 "geometry/cg/FloatSizeCG.cpp", |
| 383 "geometry/cg/IntPointCG.cpp", | 384 "geometry/cg/IntPointCG.cpp", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 } | 602 } |
| 602 | 603 |
| 603 if (current_cpu == "x86" || current_cpu == "x64") { | 604 if (current_cpu == "x86" || current_cpu == "x64") { |
| 604 source_set("blink_x86_sse") { | 605 source_set("blink_x86_sse") { |
| 605 sources = blink_platform_sse_files | 606 sources = blink_platform_sse_files |
| 606 deps = [ | 607 deps = [ |
| 607 ":blink_common", | 608 ":blink_common", |
| 608 ] | 609 ] |
| 609 } | 610 } |
| 610 } | 611 } |
| OLD | NEW |