| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'WEBKIT_DLL_UNITTEST', | 72 'WEBKIT_DLL_UNITTEST', |
| 73 ], | 73 ], |
| 74 }, { | 74 }, { |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 '../../core/core.gyp/core.gyp:webcore', | 76 '../../core/core.gyp/core.gyp:webcore', |
| 77 ], | 77 ], |
| 78 'defines': [ | 78 'defines': [ |
| 79 'WEBKIT_IMPLEMENTATION=1', | 79 'WEBKIT_IMPLEMENTATION=1', |
| 80 ], | 80 ], |
| 81 'sources': [ | 81 'sources': [ |
| 82 '<@(wtf_unittest_files)', | |
| 83 '<@(core_unittest_files)', | 82 '<@(core_unittest_files)', |
| 84 '<@(webkit_unittest_files)', | 83 '<@(webkit_unittest_files)', |
| 85 ], | 84 ], |
| 86 'conditions': [ | 85 'conditions': [ |
| 87 ['toolkit_uses_gtk == 1', { | 86 ['toolkit_uses_gtk == 1', { |
| 88 'include_dirs': [ | 87 'include_dirs': [ |
| 89 'public/gtk', | 88 'public/gtk', |
| 90 ], | 89 ], |
| 91 'variables': { | 90 'variables': { |
| 92 # FIXME: Enable warnings on other platforms. | 91 # FIXME: Enable warnings on other platforms. |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ['clang==1', { | 153 ['clang==1', { |
| 155 'target_defaults': { | 154 'target_defaults': { |
| 156 'cflags': ['-Wunused-parameter'], | 155 'cflags': ['-Wunused-parameter'], |
| 157 'xcode_settings': { | 156 'xcode_settings': { |
| 158 'WARNING_CFLAGS': ['-Wunused-parameter'], | 157 'WARNING_CFLAGS': ['-Wunused-parameter'], |
| 159 }, | 158 }, |
| 160 }, | 159 }, |
| 161 }], | 160 }], |
| 162 ], | 161 ], |
| 163 } | 162 } |
| OLD | NEW |