| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 33 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
| 34 ], | 34 ], |
| 35 'defines': [ | 35 'defines': [ |
| 36 # Technically not a unit test but require functions available only to | 36 # Technically not a unit test but require functions available only to |
| 37 # unit tests. | 37 # unit tests. |
| 38 'UNIT_TEST' | 38 'UNIT_TEST' |
| 39 ], | 39 ], |
| 40 'sources': [ | 40 'sources': [ |
| 41 'drt_application_mac.h', | 41 'drt_application_mac.h', |
| 42 'drt_application_mac.mm', | 42 'drt_application_mac.mm', |
| 43 'gc_extension.cc', |
| 44 'gc_extension.h', |
| 43 'platform_support.h', | 45 'platform_support.h', |
| 44 'platform_support_android.cc', | 46 'platform_support_android.cc', |
| 45 'platform_support_linux.cc', | 47 'platform_support_linux.cc', |
| 46 'platform_support_mac.mm', | 48 'platform_support_mac.mm', |
| 47 'platform_support_win.cc', | 49 'platform_support_win.cc', |
| 48 'test_media_stream_client.cc', | 50 'test_media_stream_client.cc', |
| 49 'test_media_stream_client.h', | 51 'test_media_stream_client.h', |
| 50 'test_webkit_platform_support.cc', | 52 'test_webkit_platform_support.cc', |
| 51 'test_webkit_platform_support.h', | 53 'test_webkit_platform_support.h', |
| 52 'test_webmessageportchannel.cc', | 54 'test_webmessageportchannel.cc', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 '<(DEPTH)', | 156 '<(DEPTH)', |
| 155 ], | 157 ], |
| 156 'conditions': [ | 158 'conditions': [ |
| 157 ['OS=="android"', { | 159 ['OS=="android"', { |
| 158 'toolsets': ['target', 'host'], | 160 'toolsets': ['target', 'host'], |
| 159 }], | 161 }], |
| 160 ], | 162 ], |
| 161 }, | 163 }, |
| 162 ], | 164 ], |
| 163 } | 165 } |
| OLD | NEW |