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 23 matching lines...) Expand all Loading... |
34 'modules.gypi', | 34 'modules.gypi', |
35 ], | 35 ], |
36 'targets': [{ | 36 'targets': [{ |
37 'target_name': 'modules', | 37 'target_name': 'modules', |
38 'type': 'static_library', | 38 'type': 'static_library', |
39 'dependencies': [ | 39 'dependencies': [ |
40 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 40 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
41 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 41 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
42 '../config.gyp:config', | 42 '../config.gyp:config', |
43 '../core/core.gyp:webcore', | 43 '../core/core.gyp:webcore', |
| 44 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
44 ], | 45 ], |
45 'defines': [ | 46 'defines': [ |
46 'BLINK_IMPLEMENTATION=1', | 47 'BLINK_IMPLEMENTATION=1', |
47 'INSIDE_BLINK', | 48 'INSIDE_BLINK', |
48 ], | 49 ], |
49 'sources': [ | 50 'sources': [ |
50 '<@(modules_files)', | 51 '<@(modules_files)', |
51 '<@(bindings_modules_generated_aggregate_files)', | 52 '<@(bindings_modules_generated_aggregate_files)', |
52 ], | 53 ], |
53 # Disable c4267 warnings until we fix size_t to int truncations. | 54 # Disable c4267 warnings until we fix size_t to int truncations. |
54 'msvs_disabled_warnings': [ 4267, 4334, ] | 55 'msvs_disabled_warnings': [ 4267, 4334, ] |
55 }, | 56 }, |
56 { | 57 { |
57 'target_name': 'modules_testing', | 58 'target_name': 'modules_testing', |
58 'type': 'static_library', | 59 'type': 'static_library', |
59 'dependencies': [ | 60 'dependencies': [ |
60 '../config.gyp:config', | 61 '../config.gyp:config', |
61 '../core/core.gyp:webcore', | 62 '../core/core.gyp:webcore', |
| 63 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
62 ], | 64 ], |
63 'defines': [ | 65 'defines': [ |
64 'BLINK_IMPLEMENTATION=1', | 66 'BLINK_IMPLEMENTATION=1', |
65 'INSIDE_BLINK', | 67 'INSIDE_BLINK', |
66 ], | 68 ], |
67 'sources': [ | 69 'sources': [ |
68 '<@(modules_testing_files)', | 70 '<@(modules_testing_files)', |
69 ], | 71 ], |
70 | 72 |
71 }], | 73 }], |
72 } | 74 } |
OLD | NEW |