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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 7572022: Use bookmark manager to add/edit bookmark pages with webui_dialogs=1. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 3873 matching lines...) Expand 10 before | Expand all | Expand 10 after
3884 ], 3884 ],
3885 'include_dirs': [ 3885 'include_dirs': [
3886 '../third_party/angle/include', 3886 '../third_party/angle/include',
3887 ], 3887 ],
3888 'link_settings': { 3888 'link_settings': {
3889 'libraries': [ 3889 'libraries': [
3890 '-lXcomposite', 3890 '-lXcomposite',
3891 ], 3891 ],
3892 }, 3892 },
3893 }], 3893 }],
3894 ['webui_bookmark_editor==1', {
3895 'defines': [
3896 'WEBUI_BOOKMARK_EDITOR',
3897 ],
3898 }],
3894 ['webui_certificate_viewer==0', { 3899 ['webui_certificate_viewer==0', {
3895 'sources/': [ 3900 'sources/': [
3896 ['exclude', '^browser/ui/webui/certificate_viewer.cc'], 3901 ['exclude', '^browser/ui/webui/certificate_viewer.cc'],
3897 ['exclude', '^browser/ui/webui/certificate_viewer.h'], 3902 ['exclude', '^browser/ui/webui/certificate_viewer.h'],
3898 ['exclude', '^browser/ui/webui/certificate_viewer_ui.cc'], 3903 ['exclude', '^browser/ui/webui/certificate_viewer_ui.cc'],
3899 ['exclude', '^browser/ui/webui/certificate_viewer_ui.h'], 3904 ['exclude', '^browser/ui/webui/certificate_viewer_ui.h'],
3900 ], 3905 ],
3901 }], 3906 }],
3902 ['webui_certificate_viewer==1', { 3907 ['webui_certificate_viewer==1', {
3903 'sources/': [ 3908 'sources/': [
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
4896 ], 4901 ],
4897 'export_dependent_settings': [ 4902 'export_dependent_settings': [
4898 'in_memory_url_index_cache_proto', 4903 'in_memory_url_index_cache_proto',
4899 ], 4904 ],
4900 # This target exports a hard dependency because it includes generated 4905 # This target exports a hard dependency because it includes generated
4901 # header files. 4906 # header files.
4902 'hard_dependency': 1, 4907 'hard_dependency': 1,
4903 }, 4908 },
4904 ], 4909 ],
4905 } 4910 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698