| 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 30 matching lines...) Expand all Loading... |
| 41 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 41 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| 42 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 42 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 43 '../config.gyp:config', | 43 '../config.gyp:config', |
| 44 '../core/core.gyp:webcore', | 44 '../core/core.gyp:webcore', |
| 45 'make_modules_generated', | 45 'make_modules_generated', |
| 46 ], | 46 ], |
| 47 'defines': [ | 47 'defines': [ |
| 48 'BLINK_IMPLEMENTATION=1', | 48 'BLINK_IMPLEMENTATION=1', |
| 49 'INSIDE_BLINK', | 49 'INSIDE_BLINK', |
| 50 ], | 50 ], |
| 51 'include_dirs': [ |
| 52 # FIXME: Remove these once scripts generate qualified |
| 53 # includes correctly: http://crbug.com/380054 |
| 54 '<(blink_core_output_dir)', |
| 55 '<(blink_modules_output_dir)', |
| 56 ], |
| 51 'sources': [ | 57 'sources': [ |
| 52 '<@(modules_files)', | 58 '<@(modules_files)', |
| 53 '<@(bindings_modules_v8_generated_aggregate_files)', | 59 '<@(bindings_modules_v8_generated_aggregate_files)', |
| 54 ], | 60 ], |
| 55 # Disable c4267 warnings until we fix size_t to int truncations. | 61 # Disable c4267 warnings until we fix size_t to int truncations. |
| 56 'msvs_disabled_warnings': [ 4267, 4334, ] | 62 'msvs_disabled_warnings': [ 4267, 4334, ] |
| 57 }, | 63 }, |
| 58 { | 64 { |
| 59 'target_name': 'modules_testing', | 65 'target_name': 'modules_testing', |
| 60 'type': 'static_library', | 66 'type': 'static_library', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 84 ], | 90 ], |
| 85 'sources': [ | 91 'sources': [ |
| 86 # bison rule | 92 # bison rule |
| 87 '../core/css/CSSGrammar.y', | 93 '../core/css/CSSGrammar.y', |
| 88 '../core/xml/XPathGrammar.y', | 94 '../core/xml/XPathGrammar.y', |
| 89 ], | 95 ], |
| 90 'actions': [ | 96 'actions': [ |
| 91 ], | 97 ], |
| 92 }], | 98 }], |
| 93 } | 99 } |
| OLD | NEW |