Chromium Code Reviews| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 'src', | 66 'src', |
| 67 ], | 67 ], |
| 68 'conditions': [ | 68 'conditions': [ |
| 69 ['component=="shared_library"', { | 69 ['component=="shared_library"', { |
| 70 'defines': [ | 70 'defines': [ |
| 71 'WEBKIT_DLL_UNITTEST', | 71 'WEBKIT_DLL_UNITTEST', |
| 72 ], | 72 ], |
| 73 }, { | 73 }, { |
| 74 'dependencies': [ | 74 'dependencies': [ |
| 75 '../core/core.gyp:webcore', | 75 '../core/core.gyp:webcore', |
| 76 '../core/core.gyp:webcore_test_support', | |
| 77 '../modules/modules.gyp:modules_test_support', | |
|
tkent
2013/08/28 03:58:07
Why do you add this block?
kihong
2013/08/28 05:25:25
There is a build error during linking webkit_unit_
tkent
2013/08/28 06:07:24
Why does the unit test require V8Internals.cpp?
| |
| 76 ], | 78 ], |
| 77 'defines': [ | 79 'defines': [ |
| 78 'WEBKIT_IMPLEMENTATION=1', | 80 'WEBKIT_IMPLEMENTATION=1', |
| 79 'INSIDE_WEBKIT', | 81 'INSIDE_WEBKIT', |
| 80 ], | 82 ], |
| 81 'sources': [ | 83 'sources': [ |
| 82 '<@(bindings_unittest_files)', | 84 '<@(bindings_unittest_files)', |
| 83 '<@(core_unittest_files)', | 85 '<@(core_unittest_files)', |
| 84 '<@(modules_unittest_files)', | 86 '<@(modules_unittest_files)', |
| 85 '<@(web_unittest_files)', | 87 '<@(web_unittest_files)', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 155 ['clang==1', { | 157 ['clang==1', { |
| 156 'target_defaults': { | 158 'target_defaults': { |
| 157 'cflags': ['-Wunused-parameter'], | 159 'cflags': ['-Wunused-parameter'], |
| 158 'xcode_settings': { | 160 'xcode_settings': { |
| 159 'WARNING_CFLAGS': ['-Wunused-parameter'], | 161 'WARNING_CFLAGS': ['-Wunused-parameter'], |
| 160 }, | 162 }, |
| 161 }, | 163 }, |
| 162 }], | 164 }], |
| 163 ], | 165 ], |
| 164 } | 166 } |
| OLD | NEW |