| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 ], | 39 ], |
| 40 'include_dirs': [ | 40 'include_dirs': [ |
| 41 '..', | 41 '..', |
| 42 ], | 42 ], |
| 43 # Note: sources list duplicated in GN build. | 43 # Note: sources list duplicated in GN build. |
| 44 'sources': [ | 44 'sources': [ |
| 45 'accessibility_controller.cc', | 45 'accessibility_controller.cc', |
| 46 'accessibility_controller.h', | 46 'accessibility_controller.h', |
| 47 'app_banner_client.cc', | 47 'app_banner_client.cc', |
| 48 'app_banner_client.h', | 48 'app_banner_client.h', |
| 49 'composite_async_then.cc', |
| 50 'composite_async_then.h', |
| 49 'event_sender.cc', | 51 'event_sender.cc', |
| 50 'event_sender.h', | 52 'event_sender.h', |
| 51 'gamepad_controller.cc', | 53 'gamepad_controller.cc', |
| 52 'gamepad_controller.h', | 54 'gamepad_controller.h', |
| 53 'gc_controller.cc', | 55 'gc_controller.cc', |
| 54 'gc_controller.h', | 56 'gc_controller.h', |
| 55 'layout_and_paint_async_then.cc', | |
| 56 'layout_and_paint_async_then.h', | |
| 57 'layout_dump.cc', | 57 'layout_dump.cc', |
| 58 'layout_dump.h', | 58 'layout_dump.h', |
| 59 'layout_test_runtime_flags.cc', | 59 'layout_test_runtime_flags.cc', |
| 60 'layout_test_runtime_flags.h', | 60 'layout_test_runtime_flags.h', |
| 61 'mock_color_chooser.cc', | 61 'mock_color_chooser.cc', |
| 62 'mock_color_chooser.h', | 62 'mock_color_chooser.h', |
| 63 'mock_content_settings_client.cc', | 63 'mock_content_settings_client.cc', |
| 64 'mock_content_settings_client.h', | 64 'mock_content_settings_client.h', |
| 65 'mock_credential_manager_client.cc', | 65 'mock_credential_manager_client.cc', |
| 66 'mock_credential_manager_client.h', | 66 'mock_credential_manager_client.h', |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 212 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 213 ], | 213 ], |
| 214 }, | 214 }, |
| 215 }], | 215 }], |
| 216 ], | 216 ], |
| 217 }, | 217 }, |
| 218 ], | 218 ], |
| 219 }], # OS=="mac" or OS=="win" | 219 }], # OS=="mac" or OS=="win" |
| 220 ] | 220 ] |
| 221 } | 221 } |
| OLD | NEW |