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 21 matching lines...) Expand all Loading... | |
| 32 '../Source/core/features.gypi', | 32 '../Source/core/features.gypi', |
| 33 ], | 33 ], |
| 34 'targets': [ | 34 'targets': [ |
| 35 { | 35 { |
| 36 # These targets should be sufficient to cause everything | 36 # These targets should be sufficient to cause everything |
| 37 # else to build (incl. webkit); if they aren't, we have our | 37 # else to build (incl. webkit); if they aren't, we have our |
| 38 # dependencies wrong. | 38 # dependencies wrong. |
| 39 'target_name': 'all_blink', | 39 'target_name': 'all_blink', |
| 40 'type': 'none', | 40 'type': 'none', |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 '../Source/wtf/wtf_tests.gyp:wtf_unittests', | |
|
abarth-chromium
2013/05/28 06:28:24
Is this the normal convention for Chromium? I gue
| |
| 42 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_unit_tests ', | 43 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_unit_tests ', |
| 43 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:D umpRenderTree', | 44 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:D umpRenderTree', |
| 44 ], | 45 ], |
| 45 'conditions': [ | 46 'conditions': [ |
| 46 ['OS=="android"', { | 47 ['OS=="android"', { |
| 47 'dependencies': [ | 48 'dependencies': [ |
| 48 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTr ee.gyp:DumpRenderTree_apk', | 49 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTr ee.gyp:DumpRenderTree_apk', |
| 49 ], | 50 ], |
| 50 }], | 51 }], |
| 51 # Special target to wrap a gtest_target_type==shared_library | 52 # Special target to wrap a gtest_target_type==shared_library |
| 52 # webkit_unit_tests into an android apk for execution. See | 53 # webkit_unit_tests into an android apk for execution. See |
| 53 # base.gyp for TODO(jrg)s about this strategy. | 54 # base.gyp for TODO(jrg)s about this strategy. |
| 54 ['OS=="android" and gtest_target_type == "shared_library"', { | 55 ['OS=="android" and gtest_target_type == "shared_library"', { |
| 55 'dependencies': [ | 56 'dependencies': [ |
| 56 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_un it_tests_apk', | 57 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_un it_tests_apk', |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ], | 60 ], |
| 60 } | 61 } |
| 61 ], | 62 ], |
| 62 } | 63 } |
| OLD | NEW |