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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 275273002: x11: Split the gfx_x11 target into its own gyp file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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 3378 matching lines...) Expand 10 before | Expand all | Expand 10 after
3389 'dependencies': [ 3389 'dependencies': [
3390 '../build/linux/system.gyp:dbus', 3390 '../build/linux/system.gyp:dbus',
3391 '../build/linux/system.gyp:fontconfig', 3391 '../build/linux/system.gyp:fontconfig',
3392 '../dbus/dbus.gyp:dbus', 3392 '../dbus/dbus.gyp:dbus',
3393 ], 3393 ],
3394 }], 3394 }],
3395 # x11 build 3395 # x11 build
3396 ['use_x11==1', { 3396 ['use_x11==1', {
3397 'dependencies': [ 3397 'dependencies': [
3398 '../build/linux/system.gyp:x11', 3398 '../build/linux/system.gyp:x11',
3399 '../ui/gfx/gfx.gyp:gfx_x11', 3399 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
3400 ], 3400 ],
3401 }], 3401 }],
3402 ], 3402 ],
3403 }], 3403 }],
3404 ['enable_plugin_installation==0', { 3404 ['enable_plugin_installation==0', {
3405 'sources!': [ 3405 'sources!': [
3406 'browser/plugins/plugin_installer.cc', 3406 'browser/plugins/plugin_installer.cc',
3407 'browser/plugins/plugin_installer.h', 3407 'browser/plugins/plugin_installer.h',
3408 'browser/plugins/plugin_installer_observer.cc', 3408 'browser/plugins/plugin_installer_observer.cc',
3409 'browser/plugins/plugin_installer_observer.h', 3409 'browser/plugins/plugin_installer_observer.h',
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
3705 'package_name': 'org/chromium/chrome/browser', 3705 'package_name': 'org/chromium/chrome/browser',
3706 'template_deps': ['browser/android/tab_load_status.h'], 3706 'template_deps': ['browser/android/tab_load_status.h'],
3707 }, 3707 },
3708 'includes': [ '../build/android/java_cpp_template.gypi' ], 3708 'includes': [ '../build/android/java_cpp_template.gypi' ],
3709 }, 3709 },
3710 ], 3710 ],
3711 }, 3711 },
3712 ], 3712 ],
3713 ], 3713 ],
3714 } 3714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698