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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 151713003: Clean up dependencies on X11 libraries (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 3073 matching lines...) Expand 10 before | Expand all | Expand 10 after
3084 '../win8/win8.gyp:metro_viewer', 3084 '../win8/win8.gyp:metro_viewer',
3085 ], 3085 ],
3086 }], 3086 }],
3087 ], 3087 ],
3088 }], 3088 }],
3089 ['ui_compositor_image_transport==1', { 3089 ['ui_compositor_image_transport==1', {
3090 'dependencies': [ 3090 'dependencies': [
3091 '../ui/gl/gl.gyp:gl', 3091 '../ui/gl/gl.gyp:gl',
3092 ], 3092 ],
3093 }], 3093 }],
3094 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 3094 ['use_x11==1', {
Paweł Hajdan Jr. 2014/02/07 23:09:28 Nice cleanup. :)
3095 'link_settings': { 3095 'dependencies': [
3096 'libraries': [ 3096 '../build/linux/system.gyp:xscrnsaver',
3097 '-lXss', 3097 ],
3098 ],
3099 },
3100 }], 3098 }],
3101 ['os_posix == 1 and OS != "mac" and OS != "ios"', { 3099 ['os_posix == 1 and OS != "mac" and OS != "ios"', {
3102 'sources': [ 3100 'sources': [
3103 'app/chrome_breakpad_client.cc', 3101 'app/chrome_breakpad_client.cc',
3104 'app/chrome_breakpad_client.h', 3102 'app/chrome_breakpad_client.h',
3105 ], 3103 ],
3106 'dependencies': [ 3104 'dependencies': [
3107 '../components/components.gyp:breakpad_component', 3105 '../components/components.gyp:breakpad_component',
3108 '../components/components.gyp:breakpad_host', 3106 '../components/components.gyp:breakpad_host',
3109 ], 3107 ],
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
3734 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3732 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3735 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3733 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3736 }, 3734 },
3737 'includes': [ '../build/android/java_cpp_template.gypi' ], 3735 'includes': [ '../build/android/java_cpp_template.gypi' ],
3738 }, 3736 },
3739 ], 3737 ],
3740 }, 3738 },
3741 ], 3739 ],
3742 ], 3740 ],
3743 } 3741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698