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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 6644002: [ChromeOS] Implement collected cookies in webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments in patch set 4 and 5 Created 9 years, 9 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
(...skipping 3172 matching lines...) Expand 10 before | Expand all | Expand 10 after
3183 'browser/ui/webui/app_launcher_handler.cc', 3183 'browser/ui/webui/app_launcher_handler.cc',
3184 'browser/ui/webui/app_launcher_handler.h', 3184 'browser/ui/webui/app_launcher_handler.h',
3185 'browser/ui/webui/bookmarks_ui.cc', 3185 'browser/ui/webui/bookmarks_ui.cc',
3186 'browser/ui/webui/bookmarks_ui.h', 3186 'browser/ui/webui/bookmarks_ui.h',
3187 'browser/ui/webui/bug_report_ui.cc', 3187 'browser/ui/webui/bug_report_ui.cc',
3188 'browser/ui/webui/bug_report_ui.h', 3188 'browser/ui/webui/bug_report_ui.h',
3189 'browser/ui/webui/chrome_url_data_manager_backend.cc', 3189 'browser/ui/webui/chrome_url_data_manager_backend.cc',
3190 'browser/ui/webui/chrome_url_data_manager_backend.h', 3190 'browser/ui/webui/chrome_url_data_manager_backend.h',
3191 'browser/ui/webui/chrome_url_data_manager.cc', 3191 'browser/ui/webui/chrome_url_data_manager.cc',
3192 'browser/ui/webui/chrome_url_data_manager.h', 3192 'browser/ui/webui/chrome_url_data_manager.h',
3193 'browser/ui/webui/collected_cookies_ui_delegate.cc',
3194 'browser/ui/webui/collected_cookies_ui_delegate.h',
3193 'browser/ui/webui/constrained_html_ui.cc', 3195 'browser/ui/webui/constrained_html_ui.cc',
3194 'browser/ui/webui/constrained_html_ui.h', 3196 'browser/ui/webui/constrained_html_ui.h',
3197 'browser/ui/webui/cookies_tree_model_adapter.cc',
3198 'browser/ui/webui/cookies_tree_model_adapter.h',
3195 'browser/ui/webui/cookies_tree_model_util.cc', 3199 'browser/ui/webui/cookies_tree_model_util.cc',
3196 'browser/ui/webui/cookies_tree_model_util.h', 3200 'browser/ui/webui/cookies_tree_model_util.h',
3197 'browser/ui/webui/crashes_ui.cc', 3201 'browser/ui/webui/crashes_ui.cc',
3198 'browser/ui/webui/crashes_ui.h', 3202 'browser/ui/webui/crashes_ui.h',
3199 'browser/ui/webui/devtools_ui.cc', 3203 'browser/ui/webui/devtools_ui.cc',
3200 'browser/ui/webui/devtools_ui.h', 3204 'browser/ui/webui/devtools_ui.h',
3201 'browser/ui/webui/downloads_dom_handler.cc', 3205 'browser/ui/webui/downloads_dom_handler.cc',
3202 'browser/ui/webui/downloads_dom_handler.h', 3206 'browser/ui/webui/downloads_dom_handler.h',
3203 'browser/ui/webui/downloads_ui.cc', 3207 'browser/ui/webui/downloads_ui.cc',
3204 'browser/ui/webui/downloads_ui.h', 3208 'browser/ui/webui/downloads_ui.h',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
3379 'sources/': [ 3383 'sources/': [
3380 ['exclude', '^browser/chromeos'], 3384 ['exclude', '^browser/chromeos'],
3381 ['exclude', 'browser/webui/chrome_about_ui.cc'], 3385 ['exclude', 'browser/webui/chrome_about_ui.cc'],
3382 ['exclude', 'browser/extensions/extension_tts_api_chromeos.cc'], 3386 ['exclude', 'browser/extensions/extension_tts_api_chromeos.cc'],
3383 ['exclude', 'browser/oom_priority_manager.cc'], 3387 ['exclude', 'browser/oom_priority_manager.cc'],
3384 ['exclude', 'browser/oom_priority_manager.h'], 3388 ['exclude', 'browser/oom_priority_manager.h'],
3385 ['exclude', 'browser/policy/device_policy_identity_strategy.cc'], 3389 ['exclude', 'browser/policy/device_policy_identity_strategy.cc'],
3386 ['exclude', 'browser/policy/device_policy_identity_strategy.h'], 3390 ['exclude', 'browser/policy/device_policy_identity_strategy.h'],
3387 ['exclude', 'browser/renderer_host/offline_resource_handler.cc'], 3391 ['exclude', 'browser/renderer_host/offline_resource_handler.cc'],
3388 ['exclude', 'browser/renderer_host/offline_resource_handler.h'], 3392 ['exclude', 'browser/renderer_host/offline_resource_handler.h'],
3393 ['exclude', 'browser/ui/webui/collected_cookies_ui_delegate.cc'],
3394 ['exclude', 'browser/ui/webui/collected_cookies_ui_delegate.h'],
3395 ['exclude', 'browser/ui/webui/cookies_tree_model_adapter.cc'],
3396 ['exclude', 'browser/ui/webui/cookies_tree_model_adapter.h'],
3389 ['exclude', 'browser/ui/webui/filebrowse_ui.cc'], 3397 ['exclude', 'browser/ui/webui/filebrowse_ui.cc'],
3390 ['exclude', 'browser/ui/webui/mediaplayer_ui.cc'], 3398 ['exclude', 'browser/ui/webui/mediaplayer_ui.cc'],
3391 ['exclude', 'browser/ui/webui/slideshow_ui.cc'], 3399 ['exclude', 'browser/ui/webui/slideshow_ui.cc'],
3392 ], 3400 ],
3393 }], 3401 }],
3394 ['chromeos==1', { 3402 ['chromeos==1', {
3395 'sources!': [ 3403 'sources!': [
3396 'browser/background_mode_manager_linux.cc', 3404 'browser/background_mode_manager_linux.cc',
3397 'browser/password_manager/native_backend_gnome_x.cc', 3405 'browser/password_manager/native_backend_gnome_x.cc',
3398 'browser/password_manager/native_backend_gnome_x.h', 3406 'browser/password_manager/native_backend_gnome_x.h',
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
4403 ], 4411 ],
4404 }, 4412 },
4405 ], 4413 ],
4406 } 4414 }
4407 4415
4408 # Local Variables: 4416 # Local Variables:
4409 # tab-width:2 4417 # tab-width:2
4410 # indent-tabs-mode:nil 4418 # indent-tabs-mode:nil
4411 # End: 4419 # End:
4412 # vim: set expandtab tabstop=2 shiftwidth=2: 4420 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698