| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 '<(DEPTH)/skia/skia.gyp:skia', | 56 '<(DEPTH)/skia/skia.gyp:skia', |
| 57 ], | 57 ], |
| 58 'defines': [ | 58 'defines': [ |
| 59 'BLINK_COMMON_IMPLEMENTATION=1', | 59 'BLINK_COMMON_IMPLEMENTATION=1', |
| 60 'INSIDE_BLINK', | 60 'INSIDE_BLINK', |
| 61 ], | 61 ], |
| 62 'include_dirs': [ | 62 'include_dirs': [ |
| 63 '<(SHARED_INTERMEDIATE_DIR)/blink', | 63 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 64 ], | 64 ], |
| 65 'sources': [ | 65 'sources': [ |
| 66 '../web/WebInputEvent.cpp', |
| 66 'exported/FilePathConversion.cpp', | 67 'exported/FilePathConversion.cpp', |
| 67 'exported/URLConversion.cpp', | 68 'exported/URLConversion.cpp', |
| 68 'exported/WebCString.cpp', | 69 'exported/WebCString.cpp', |
| 69 'exported/WebString.cpp', | 70 'exported/WebString.cpp', |
| 71 'exported/linux/WebFontRenderStyle.cpp', |
| 72 ], |
| 73 'target_conditions': [ |
| 74 ['OS=="android"', { |
| 75 'sources/': [ |
| 76 ['include', 'exported/linux/WebFontRenderStyle\\.cpp$'], |
| 77 ], |
| 78 }], |
| 70 ], | 79 ], |
| 71 }, | 80 }, |
| 72 { | 81 { |
| 73 'target_name': 'blink_heap_asm_stubs', | 82 'target_name': 'blink_heap_asm_stubs', |
| 74 'type': 'static_library', | 83 'type': 'static_library', |
| 75 # VS2010 does not correctly incrementally link obj files generated | 84 # VS2010 does not correctly incrementally link obj files generated |
| 76 # from asm files. This flag disables UseLibraryDependencyInputs to | 85 # from asm files. This flag disables UseLibraryDependencyInputs to |
| 77 # avoid this problem. | 86 # avoid this problem. |
| 78 'msvs_2010_disable_uldi_when_referenced': 1, | 87 'msvs_2010_disable_uldi_when_referenced': 1, |
| 79 'includes': [ | 88 'includes': [ |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 }], | 379 }], |
| 371 ['target_arch=="arm"', { | 380 ['target_arch=="arm"', { |
| 372 'dependencies': [ | 381 'dependencies': [ |
| 373 'blink_arm_neon', | 382 'blink_arm_neon', |
| 374 ], | 383 ], |
| 375 }], | 384 }], |
| 376 ], | 385 ], |
| 377 'target_conditions': [ | 386 'target_conditions': [ |
| 378 ['OS=="android"', { | 387 ['OS=="android"', { |
| 379 'sources/': [ | 388 'sources/': [ |
| 380 ['include', 'exported/linux/WebFontRenderStyle\\.cpp$'], | 389 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], |
| 381 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], | |
| 382 ], | 390 ], |
| 383 }], | 391 }], |
| 384 ], | 392 ], |
| 385 }, | 393 }, |
| 386 # The *NEON.cpp files fail to compile when -mthumb is passed. Force | 394 # The *NEON.cpp files fail to compile when -mthumb is passed. Force |
| 387 # them to build in ARM mode. | 395 # them to build in ARM mode. |
| 388 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 396 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 389 { | 397 { |
| 390 'target_name': 'blink_arm_neon', | 398 'target_name': 'blink_arm_neon', |
| 391 'conditions': [ | 399 'conditions': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 407 ['OS=="android"', { | 415 ['OS=="android"', { |
| 408 'cflags!': ['-mthumb'], | 416 'cflags!': ['-mthumb'], |
| 409 }], | 417 }], |
| 410 ], | 418 ], |
| 411 },{ # target_arch!="arm" | 419 },{ # target_arch!="arm" |
| 412 'type': 'none', | 420 'type': 'none', |
| 413 }], | 421 }], |
| 414 ], | 422 ], |
| 415 }], | 423 }], |
| 416 } | 424 } |
| OLD | NEW |