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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 4306 matching lines...) Expand 10 before | Expand all | Expand 10 after
4317 'sources': [ 4317 'sources': [
4318 'browser/crash_handler_host_linux_stub.cc', 4318 'browser/crash_handler_host_linux_stub.cc',
4319 ], 4319 ],
4320 }], 4320 }],
4321 ], 4321 ],
4322 }], 4322 }],
4323 ['OS=="linux" and use_aura==1', { 4323 ['OS=="linux" and use_aura==1', {
4324 'dependencies': [ 4324 'dependencies': [
4325 '../build/linux/system.gyp:dbus', 4325 '../build/linux/system.gyp:dbus',
4326 '../build/linux/system.gyp:fontconfig', 4326 '../build/linux/system.gyp:fontconfig',
4327 '../build/linux/system.gyp:frame',
rjkroege 2012/04/02 17:05:15 these should not be included unless the use_utouch
4328 '../build/linux/system.gyp:grail',
4327 '../build/linux/system.gyp:x11', 4329 '../build/linux/system.gyp:x11',
4328 '../dbus/dbus.gyp:dbus', 4330 '../dbus/dbus.gyp:dbus',
4329 ], 4331 ],
4330 }], 4332 }],
4331 ['use_nss==1', { 4333 ['use_nss==1', {
4332 'sources': [ 4334 'sources': [
4333 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 4335 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
4334 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 4336 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
4335 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 4337 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
4336 'third_party/mozilla_security_manager/nsNSSCertificate.h', 4338 'third_party/mozilla_security_manager/nsNSSCertificate.h',
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
5318 'variables': { 5320 'variables': {
5319 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5321 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5320 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5322 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5321 }, 5323 },
5322 'includes': ['../build/protoc.gypi'], 5324 'includes': ['../build/protoc.gypi'],
5323 }], 5325 }],
5324 ], 5326 ],
5325 }, 5327 },
5326 ], 5328 ],
5327 } 5329 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698