| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "fonts/opentype/OpenTypeUtilities.h", | 292 "fonts/opentype/OpenTypeUtilities.h", |
| 293 "text/LocaleWin.cpp", | 293 "text/LocaleWin.cpp", |
| 294 ] | 294 ] |
| 295 } | 295 } |
| 296 | 296 |
| 297 if (is_android) { | 297 if (is_android) { |
| 298 # Add in some Linux files also shared with Android. | 298 # Add in some Linux files also shared with Android. |
| 299 set_sources_assignment_filter([]) | 299 set_sources_assignment_filter([]) |
| 300 sources += [ | 300 sources += [ |
| 301 "exported/linux/WebFontRenderStyle.cpp", | 301 "exported/linux/WebFontRenderStyle.cpp", |
| 302 "fonts/linux/FontPlatformDataLinuxHarfBuzz.cpp", | 302 "fonts/linux/FontPlatformDataLinux.cpp", |
| 303 ] | 303 ] |
| 304 set_sources_assignment_filter(sources_assignment_filter) | 304 set_sources_assignment_filter(sources_assignment_filter) |
| 305 } else { | 305 } else { |
| 306 sources -= [ | 306 sources -= [ |
| 307 "scroll/ScrollbarThemeAndroid.cpp", | 307 "scroll/ScrollbarThemeAndroid.cpp", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| 310 | 310 |
| 311 if (is_linux) { | 311 if (is_linux) { |
| 312 direct_dependent_configs = [ "//build/config/linux:fontconfig" ] | 312 direct_dependent_configs = [ "//build/config/linux:fontconfig" ] |
| (...skipping 156 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 |