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 24 matching lines...) Expand all Loading... |
35 'targets': [{ | 35 'targets': [{ |
36 'target_name': 'blink_platform_unittests', | 36 'target_name': 'blink_platform_unittests', |
37 'type': 'executable', | 37 'type': 'executable', |
38 'dependencies': [ | 38 'dependencies': [ |
39 'blink_platform.gyp:blink_platform', | 39 'blink_platform.gyp:blink_platform', |
40 '../config.gyp:unittest_config', | 40 '../config.gyp:unittest_config', |
41 '../wtf/wtf.gyp:wtf', | 41 '../wtf/wtf.gyp:wtf', |
42 '../wtf/wtf_tests.gyp:run_all_tests', | 42 '../wtf/wtf_tests.gyp:run_all_tests', |
43 '<(DEPTH)/url/url.gyp:url_lib', | 43 '<(DEPTH)/url/url.gyp:url_lib', |
44 ], | 44 ], |
| 45 'include_dirs': [ |
| 46 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 47 ], |
45 'sources': [ | 48 'sources': [ |
46 '<@(platform_test_files)', | 49 '<@(platform_test_files)', |
| 50 |
| 51 # Additional .cpp files from platform_derived_sources.gyp:make_platform_de
rived_sources actions. |
| 52 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.cpp', |
| 53 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', |
47 ], | 54 ], |
48 'conditions': [ | 55 'conditions': [ |
49 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_use_
tcmalloc==1', { | 56 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_use_
tcmalloc==1', { |
50 'dependencies': [ | 57 'dependencies': [ |
51 '<(DEPTH)/base/base.gyp:base', | 58 '<(DEPTH)/base/base.gyp:base', |
52 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 59 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
53 ] | 60 ] |
54 }] | 61 }] |
55 ] | 62 ] |
56 }], | 63 }], |
57 } | 64 } |
OLD | NEW |