| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 deps = [ | 207 deps = [ |
| 208 ":make_platform_generated", | 208 ":make_platform_generated", |
| 209 "//third_party/harfbuzz-ng", | 209 "//third_party/harfbuzz-ng", |
| 210 "//third_party/icu", | 210 "//third_party/icu", |
| 211 "//third_party/WebKit/Source/wtf", | 211 "//third_party/WebKit/Source/wtf", |
| 212 "//third_party/WebKit/Source/platform/heap", | 212 "//third_party/WebKit/Source/platform/heap", |
| 213 ] | 213 ] |
| 214 | 214 |
| 215 if (is_mac) { | 215 if (is_mac) { |
| 216 sources -= [ | 216 sources -= [ |
| 217 "fonts/opentype/OpenTypeTypes.h", | |
| 218 "fonts/opentype/OpenTypeVerticalData.cpp", | |
| 219 "fonts/opentype/OpenTypeVerticalData.h", | |
| 220 # The Mac currently uses FontCustomPlatformDataMac.cpp instead. | |
| 221 "fonts/skia/FontCacheSkia.cpp", | 217 "fonts/skia/FontCacheSkia.cpp", |
| 222 # Uses LocaleMac instead. | 218 # Uses LocaleMac instead. |
| 223 "text/LocaleICU.cpp", | 219 "text/LocaleICU.cpp", |
| 224 "text/LocaleICU.h", | 220 "text/LocaleICU.h", |
| 225 # Uses KillRingMac.mm instead. | 221 # Uses KillRingMac.mm instead. |
| 226 "KillRingNone.cpp", | 222 "KillRingNone.cpp", |
| 227 # Mac uses only ScrollAnimatorMac. | 223 # Mac uses only ScrollAnimatorMac. |
| 228 "scroll/ScrollbarThemeNonMacCommon.cpp", | 224 "scroll/ScrollbarThemeNonMacCommon.cpp", |
| 229 "scroll/ScrollbarThemeNonMacCommon.h", | 225 "scroll/ScrollbarThemeNonMacCommon.h", |
| 230 "scroll/ScrollAnimatorNone.cpp", | 226 "scroll/ScrollAnimatorNone.cpp", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 #'cflags': ['-marm'], | 391 #'cflags': ['-marm'], |
| 396 # 'conditions': [ | 392 # 'conditions': [ |
| 397 # ['OS=="android"', { | 393 # ['OS=="android"', { |
| 398 # 'cflags!': ['-mthumb'], | 394 # 'cflags!': ['-mthumb'], |
| 399 # }], | 395 # }], |
| 400 # ], | 396 # ], |
| 401 | 397 |
| 402 deps = [ ":blink_common" ] | 398 deps = [ ":blink_common" ] |
| 403 } | 399 } |
| 404 } | 400 } |
| OLD | NEW |