Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 467983002: Make udev target disappear on linux when use_udev==0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/usb_service.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2870 matching lines...) Expand 10 before | Expand all | Expand 10 after
2881 ['exclude', '^browser/ui/views/'], 2881 ['exclude', '^browser/ui/views/'],
2882 ] 2882 ]
2883 }], 2883 }],
2884 ], 2884 ],
2885 }], 2885 }],
2886 ['desktop_linux==1', { 2886 ['desktop_linux==1', {
2887 'sources': [ '<@(chrome_browser_ui_desktop_linux_sources)' ], 2887 'sources': [ '<@(chrome_browser_ui_desktop_linux_sources)' ],
2888 }], 2888 }],
2889 ['OS=="linux"', { # Both desktop Linux and ChromeOS. 2889 ['OS=="linux"', { # Both desktop Linux and ChromeOS.
2890 'sources': [ '<@(chrome_browser_ui_linux_sources)' ], 2890 'sources': [ '<@(chrome_browser_ui_linux_sources)' ],
2891 'dependencies': [
2892 '../build/linux/system.gyp:udev',
2893 ],
2894 'conditions': [ 2891 'conditions': [
2895 ['use_aura==1', { 2892 ['use_aura==1', {
2896 'dependencies': [ 2893 'dependencies': [
2897 '../build/linux/system.gyp:dbus', 2894 '../build/linux/system.gyp:dbus',
2898 '../build/linux/system.gyp:fontconfig', 2895 '../build/linux/system.gyp:fontconfig',
2899 '../dbus/dbus.gyp:dbus', 2896 '../dbus/dbus.gyp:dbus',
2900 ], 2897 ],
2901 }], 2898 }],
2902 # x11 build 2899 # x11 build
2903 ['use_x11==1', { 2900 ['use_x11==1', {
2904 'sources': [ '<@(chrome_browser_ui_x11_sources)' ], 2901 'sources': [ '<@(chrome_browser_ui_x11_sources)' ],
2905 'dependencies': [ 2902 'dependencies': [
2906 '../build/linux/system.gyp:x11', 2903 '../build/linux/system.gyp:x11',
2907 '../build/linux/system.gyp:gio', 2904 '../build/linux/system.gyp:gio',
2908 ], 2905 ],
2909 }], 2906 }],
2907 ['use_udev==1', {
2908 'dependencies': [
2909 '../build/linux/system.gyp:udev',
2910 ],
2911 }],
2910 ], 2912 ],
2911 }], 2913 }],
2912 ['enable_app_list==1', { 2914 ['enable_app_list==1', {
2913 'sources': [ '<@(chrome_browser_ui_app_list_sources)' ], 2915 'sources': [ '<@(chrome_browser_ui_app_list_sources)' ],
2914 'dependencies': [ 2916 'dependencies': [
2915 '../ui/app_list/app_list.gyp:app_list', 2917 '../ui/app_list/app_list.gyp:app_list',
2916 ], 2918 ],
2917 }, { 2919 }, {
2918 'sources': [ '<@(chrome_browser_ui_non_app_list_sources)' ], 2920 'sources': [ '<@(chrome_browser_ui_non_app_list_sources)' ],
2919 }], 2921 }],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2958 }], 2960 }],
2959 ['OS!="android" and OS!="ios"', { 2961 ['OS!="android" and OS!="ios"', {
2960 'dependencies': [ 2962 'dependencies': [
2961 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 2963 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
2962 ], 2964 ],
2963 }], 2965 }],
2964 ], 2966 ],
2965 }, 2967 },
2966 ], 2968 ],
2967 } 2969 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/usb_service.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698