| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'chrome_browser_ui_non_ios_sources': [ | 7 'chrome_browser_ui_non_ios_sources': [ |
| 8 'browser/ui/accelerator_utils.h', | 8 'browser/ui/accelerator_utils.h', |
| 9 'browser/ui/android/android_about_app_info.cc', | 9 'browser/ui/android/android_about_app_info.cc', |
| 10 'browser/ui/android/android_about_app_info.h', | 10 'browser/ui/android/android_about_app_info.h', |
| (...skipping 2763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2774 }], | 2774 }], |
| 2775 ['enable_printing==1', { | 2775 ['enable_printing==1', { |
| 2776 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ], | 2776 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ], |
| 2777 }], | 2777 }], |
| 2778 ['OS=="linux" or OS=="android"', { | 2778 ['OS=="linux" or OS=="android"', { |
| 2779 'sources': [ '<@(chrome_browser_ui_android_linux_sources)' ], | 2779 'sources': [ '<@(chrome_browser_ui_android_linux_sources)' ], |
| 2780 }], | 2780 }], |
| 2781 ['OS=="android"', { | 2781 ['OS=="android"', { |
| 2782 'dependencies': [ | 2782 'dependencies': [ |
| 2783 '../components/components.gyp:web_contents_delegate_android', | 2783 '../components/components.gyp:web_contents_delegate_android', |
| 2784 '../third_party/openssl/openssl.gyp:openssl', | 2784 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 2785 'chrome_browser_jni_headers', | 2785 'chrome_browser_jni_headers', |
| 2786 ], | 2786 ], |
| 2787 'dependencies!': [ | 2787 'dependencies!': [ |
| 2788 '../components/components.gyp:feedback_proto', | 2788 '../components/components.gyp:feedback_proto', |
| 2789 '../third_party/libusb/libusb.gyp:libusb', | 2789 '../third_party/libusb/libusb.gyp:libusb', |
| 2790 '../ui/events/events.gyp:events', | 2790 '../ui/events/events.gyp:events', |
| 2791 'chrome_browser_ui_views.gyp:browser_ui_views', | 2791 'chrome_browser_ui_views.gyp:browser_ui_views', |
| 2792 ], | 2792 ], |
| 2793 'sources': [ '<@(chrome_browser_ui_android_sources)' ], | 2793 'sources': [ '<@(chrome_browser_ui_android_sources)' ], |
| 2794 }, { # Non-Android | 2794 }, { # Non-Android |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2956 }], | 2956 }], |
| 2957 # Temporary fix to break the browser_ui target into smaller chunks so it | 2957 # Temporary fix to break the browser_ui target into smaller chunks so it |
| 2958 # will link with SyzyASan builds. | 2958 # will link with SyzyASan builds. |
| 2959 ['OS=="win" and syzyasan==1', { | 2959 ['OS=="win" and syzyasan==1', { |
| 2960 'msvs_shard': 4, | 2960 'msvs_shard': 4, |
| 2961 }], | 2961 }], |
| 2962 ], | 2962 ], |
| 2963 }, | 2963 }, |
| 2964 ], | 2964 ], |
| 2965 } | 2965 } |
| OLD | NEW |