| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'sources': [ | 51 'sources': [ |
| 52 '<@(modules_files)', | 52 '<@(modules_files)', |
| 53 '<@(bindings_modules_generated_aggregate_files)', | 53 '<@(bindings_modules_v8_generated_aggregate_files)', |
| 54 ], | 54 ], |
| 55 # Disable c4267 warnings until we fix size_t to int truncations. | 55 # Disable c4267 warnings until we fix size_t to int truncations. |
| 56 'msvs_disabled_warnings': [ 4267, 4334, ] | 56 'msvs_disabled_warnings': [ 4267, 4334, ] |
| 57 }, | 57 }, |
| 58 { | 58 { |
| 59 'target_name': 'modules_testing', | 59 'target_name': 'modules_testing', |
| 60 'type': 'static_library', | 60 'type': 'static_library', |
| 61 'dependencies': [ | 61 'dependencies': [ |
| 62 '../config.gyp:config', | 62 '../config.gyp:config', |
| 63 '../core/core.gyp:webcore', | 63 '../core/core.gyp:webcore', |
| 64 ], | 64 ], |
| 65 'defines': [ | 65 'defines': [ |
| 66 'BLINK_IMPLEMENTATION=1', | 66 'BLINK_IMPLEMENTATION=1', |
| 67 'INSIDE_BLINK', | 67 'INSIDE_BLINK', |
| 68 ], | 68 ], |
| 69 'sources': [ | 69 'sources': [ |
| 70 '<@(modules_testing_files)', | 70 '<@(modules_testing_files)', |
| 71 ], | 71 ], |
| 72 | 72 |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 # FIXME: should be in modules_generated.gyp |
| 75 'target_name': 'make_modules_generated', | 76 'target_name': 'make_modules_generated', |
| 76 'type': 'none', | 77 'type': 'none', |
| 77 'hard_dependency': 1, | 78 'hard_dependency': 1, |
| 78 'dependencies': [ | 79 'dependencies': [ |
| 79 #'generated_testing_idls', | 80 #'generated_testing_idls', |
| 80 '../core/core_generated.gyp:core_bindings_generated', | 81 '../core/core_generated.gyp:core_event_interfaces', |
| 81 '../bindings/modules/generated.gyp:bindings_modules_generated', | 82 '../bindings/modules/generated.gyp:modules_event_generated', |
| 82 '../config.gyp:config', | 83 '../config.gyp:config', |
| 83 ], | 84 ], |
| 84 'sources': [ | 85 'sources': [ |
| 85 # bison rule | 86 # bison rule |
| 86 '../core/css/CSSGrammar.y', | 87 '../core/css/CSSGrammar.y', |
| 87 '../core/xml/XPathGrammar.y', | 88 '../core/xml/XPathGrammar.y', |
| 88 ], | 89 ], |
| 89 'actions': [ | 90 'actions': [ |
| 90 ], | 91 ], |
| 91 }], | 92 }], |
| 92 } | 93 } |
| OLD | NEW |