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

Side by Side Diff: content/content_shell.gypi

Issue 9980002: Mac content shell: HTTP auth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed extraneous forward declare 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 | Annotate | Revision Log
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 'variables': { 6 'variables': {
7 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'shell/shell_content_utility_client.h', 77 'shell/shell_content_utility_client.h',
78 'shell/shell_devtools_delegate.cc', 78 'shell/shell_devtools_delegate.cc',
79 'shell/shell_devtools_delegate.h', 79 'shell/shell_devtools_delegate.h',
80 'shell/shell_download_manager_delegate.cc', 80 'shell/shell_download_manager_delegate.cc',
81 'shell/shell_download_manager_delegate.h', 81 'shell/shell_download_manager_delegate.h',
82 'shell/shell_javascript_dialog_creator.cc', 82 'shell/shell_javascript_dialog_creator.cc',
83 'shell/shell_javascript_dialog_creator.h', 83 'shell/shell_javascript_dialog_creator.h',
84 'shell/shell_javascript_dialog_mac.mm', 84 'shell/shell_javascript_dialog_mac.mm',
85 'shell/shell_javascript_dialog_win.cc', 85 'shell/shell_javascript_dialog_win.cc',
86 'shell/shell_javascript_dialog.h', 86 'shell/shell_javascript_dialog.h',
87 'shell/shell_login_dialog_mac.mm',
88 'shell/shell_login_dialog.cc',
89 'shell/shell_login_dialog.h',
87 'shell/shell_main_delegate.cc', 90 'shell/shell_main_delegate.cc',
88 'shell/shell_main_delegate.h', 91 'shell/shell_main_delegate.h',
89 'shell/shell_messages.cc', 92 'shell/shell_messages.cc',
90 'shell/shell_messages.h', 93 'shell/shell_messages.h',
91 'shell/shell_network_delegate.cc', 94 'shell/shell_network_delegate.cc',
92 'shell/shell_network_delegate.h', 95 'shell/shell_network_delegate.h',
93 'shell/shell_render_process_observer.cc', 96 'shell/shell_render_process_observer.cc',
94 'shell/shell_render_process_observer.h', 97 'shell/shell_render_process_observer.h',
95 'shell/shell_render_view_host_observer.cc', 98 'shell/shell_render_view_host_observer.cc',
96 'shell/shell_render_view_host_observer.h', 99 'shell/shell_render_view_host_observer.h',
97 'shell/shell_render_view_observer.cc', 100 'shell/shell_render_view_observer.cc',
98 'shell/shell_render_view_observer.h', 101 'shell/shell_render_view_observer.h',
99 'shell/shell_resource_context.cc', 102 'shell/shell_resource_context.cc',
100 'shell/shell_resource_context.h', 103 'shell/shell_resource_context.h',
104 'shell/shell_resource_dispatcher_host_delegate.cc',
105 'shell/shell_resource_dispatcher_host_delegate.h',
101 'shell/shell_switches.cc', 106 'shell/shell_switches.cc',
102 'shell/shell_switches.h', 107 'shell/shell_switches.h',
103 'shell/shell_url_request_context_getter.cc', 108 'shell/shell_url_request_context_getter.cc',
104 'shell/shell_url_request_context_getter.h', 109 'shell/shell_url_request_context_getter.h',
105 ], 110 ],
106 'msvs_settings': { 111 'msvs_settings': {
107 'VCLinkerTool': { 112 'VCLinkerTool': {
108 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 113 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
109 }, 114 },
110 }, 115 },
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ], 363 ],
359 'conditions': [ 364 'conditions': [
360 ['OS=="mac"', { 365 ['OS=="mac"', {
361 'targets': [ 366 'targets': [
362 { 367 {
363 'target_name': 'content_shell_framework', 368 'target_name': 'content_shell_framework',
364 'type': 'shared_library', 369 'type': 'shared_library',
365 'product_name': '<(content_shell_product_name) Framework', 370 'product_name': '<(content_shell_product_name) Framework',
366 'mac_bundle': 1, 371 'mac_bundle': 1,
367 'mac_bundle_resources': [ 372 'mac_bundle_resources': [
373 'shell/mac/English.lproj/HttpAuth.xib',
368 'shell/mac/English.lproj/MainMenu.xib', 374 'shell/mac/English.lproj/MainMenu.xib',
369 '<(PRODUCT_DIR)/content_shell.pak' 375 '<(PRODUCT_DIR)/content_shell.pak'
370 ], 376 ],
371 'dependencies': [ 377 'dependencies': [
372 'content_shell_lib', 378 'content_shell_lib',
373 ], 379 ],
374 'include_dirs': [ 380 'include_dirs': [
375 '..', 381 '..',
376 ], 382 ],
377 'sources': [ 383 'sources': [
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 '-buildfile', 477 '-buildfile',
472 '<(DEPTH)/content/shell/android/content_shell_apk.xml', 478 '<(DEPTH)/content/shell/android/content_shell_apk.xml',
473 ] 479 ]
474 } 480 }
475 ], 481 ],
476 }, 482 },
477 ], 483 ],
478 }], # OS=="android" 484 }], # OS=="android"
479 ] 485 ]
480 } 486 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698