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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 123693003: Revise user-data-dir switch handling; avoid crashes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup. 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 2563 matching lines...) Expand 10 before | Expand all | Expand 10 after
2574 'browser/usb/usb_device_handle.cc', 2574 'browser/usb/usb_device_handle.cc',
2575 'browser/usb/usb_device_handle.h', 2575 'browser/usb/usb_device_handle.h',
2576 'browser/usb/usb_interface.cc', 2576 'browser/usb/usb_interface.cc',
2577 'browser/usb/usb_interface.h', 2577 'browser/usb/usb_interface.h',
2578 'browser/usb/usb_context.cc', 2578 'browser/usb/usb_context.cc',
2579 'browser/usb/usb_context.h', 2579 'browser/usb/usb_context.h',
2580 'browser/usb/usb_service.cc', 2580 'browser/usb/usb_service.cc',
2581 'browser/usb/usb_service.h', 2581 'browser/usb/usb_service.h',
2582 'browser/user_data_dir_extractor.cc', 2582 'browser/user_data_dir_extractor.cc',
2583 'browser/user_data_dir_extractor.h', 2583 'browser/user_data_dir_extractor.h',
2584 'browser/user_data_dir_extractor_win.cc',
2585 'browser/user_data_dir_extractor_win.h',
2586 'browser/value_store/leveldb_value_store.cc', 2584 'browser/value_store/leveldb_value_store.cc',
2587 'browser/value_store/leveldb_value_store.h', 2585 'browser/value_store/leveldb_value_store.h',
2588 'browser/value_store/testing_value_store.cc', 2586 'browser/value_store/testing_value_store.cc',
2589 'browser/value_store/testing_value_store.h', 2587 'browser/value_store/testing_value_store.h',
2590 'browser/value_store/value_store.cc', 2588 'browser/value_store/value_store.cc',
2591 'browser/value_store/value_store.h', 2589 'browser/value_store/value_store.h',
2592 'browser/value_store/value_store_change.cc', 2590 'browser/value_store/value_store_change.cc',
2593 'browser/value_store/value_store_change.h', 2591 'browser/value_store/value_store_change.h',
2594 'browser/value_store/value_store_frontend.cc', 2592 'browser/value_store/value_store_frontend.cc',
2595 'browser/value_store/value_store_frontend.h', 2593 'browser/value_store/value_store_frontend.h',
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
3430 '../win8/win8.gyp:win8_util', 3428 '../win8/win8.gyp:win8_util',
3431 ], 3429 ],
3432 'export_dependent_settings': [ 3430 'export_dependent_settings': [
3433 '../ui/views/controls/webview/webview.gyp:webview', 3431 '../ui/views/controls/webview/webview.gyp:webview',
3434 '../ui/views/views.gyp:views', 3432 '../ui/views/views.gyp:views',
3435 ], 3433 ],
3436 'sources!': [ 3434 'sources!': [
3437 'browser/first_run/first_run_dialog.h', 3435 'browser/first_run/first_run_dialog.h',
3438 'browser/lifetime/application_lifetime_stub.cc', 3436 'browser/lifetime/application_lifetime_stub.cc',
3439 'browser/profiles/profile_shortcut_manager_stub.cc', 3437 'browser/profiles/profile_shortcut_manager_stub.cc',
3440 'browser/user_data_dir_extractor.cc',
3441 ], 3438 ],
3442 'conditions': [ 3439 'conditions': [
3443 ['win_use_allocator_shim==1', { 3440 ['win_use_allocator_shim==1', {
3444 'dependencies': [ 3441 'dependencies': [
3445 '<(allocator_target)', 3442 '<(allocator_target)',
3446 ], 3443 ],
3447 }], 3444 }],
3448 ], 3445 ],
3449 }, { # 'OS!="win" 3446 }, { # 'OS!="win"
3450 'sources/': [ 3447 'sources/': [
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
3773 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3770 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3774 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3771 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3775 }, 3772 },
3776 'includes': [ '../build/android/java_cpp_template.gypi' ], 3773 'includes': [ '../build/android/java_cpp_template.gypi' ],
3777 }, 3774 },
3778 ], 3775 ],
3779 }, 3776 },
3780 ], 3777 ],
3781 ], 3778 ],
3782 } 3779 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698