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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 298863012: Use upstream libaddressinput in Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Validate required fields without rules. Created 6 years, 6 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_ui', 8 'target_name': 'browser_ui',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 3091 matching lines...) Expand 10 before | Expand all | Expand 10 after
3102 }], 3102 }],
3103 ['enable_autofill_dialog!=1', { 3103 ['enable_autofill_dialog!=1', {
3104 'sources!': [ 3104 'sources!': [
3105 'browser/ui/autofill/autofill_dialog_common.cc', 3105 'browser/ui/autofill/autofill_dialog_common.cc',
3106 'browser/ui/autofill/autofill_dialog_common.h', 3106 'browser/ui/autofill/autofill_dialog_common.h',
3107 ], 3107 ],
3108 }], 3108 }],
3109 ['enable_autofill_dialog==1 and OS!="android" and OS!="ios"', { 3109 ['enable_autofill_dialog==1 and OS!="android" and OS!="ios"', {
3110 'dependencies': [ 3110 'dependencies': [
3111 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3111 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3112 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ strings', 3112 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ util',
3113 ], 3113 ],
3114 }, { # enable_autofill_dialog!=1 or OS=="android" or OS=="ios" 3114 }, { # enable_autofill_dialog!=1 or OS=="android" or OS=="ios"
3115 'sources!': [ 3115 'sources!': [
3116 'browser/ui/autofill/autofill_dialog_controller_impl.cc', 3116 'browser/ui/autofill/autofill_dialog_controller_impl.cc',
3117 'browser/ui/autofill/autofill_dialog_controller_impl.h', 3117 'browser/ui/autofill/autofill_dialog_controller_impl.h',
3118 'browser/ui/autofill/autofill_dialog_i18n_input.cc', 3118 'browser/ui/autofill/autofill_dialog_i18n_input.cc',
3119 'browser/ui/autofill/autofill_dialog_i18n_input.h', 3119 'browser/ui/autofill/autofill_dialog_i18n_input.h',
3120 'browser/ui/autofill/autofill_dialog_view.h', 3120 'browser/ui/autofill/autofill_dialog_view.h',
3121 'browser/ui/autofill/autofill_dialog_view.cc', 3121 'browser/ui/autofill/autofill_dialog_view.cc',
3122 'browser/ui/autofill/autofill_dialog_view_delegate.h', 3122 'browser/ui/autofill/autofill_dialog_view_delegate.h',
(...skipping 27 matching lines...) Expand all
3150 ], 3150 ],
3151 'sources!': [ 3151 'sources!': [
3152 'browser/ui/views/session_crashed_bubble_view.cc', 3152 'browser/ui/views/session_crashed_bubble_view.cc',
3153 'browser/ui/views/session_crashed_bubble_view.h', 3153 'browser/ui/views/session_crashed_bubble_view.h',
3154 ], 3154 ],
3155 }], 3155 }],
3156 ], 3156 ],
3157 }, 3157 },
3158 ], 3158 ],
3159 } 3159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698