OLD | NEW |
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 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'shell/renderer/leak_detector.cc', | 166 'shell/renderer/leak_detector.cc', |
167 'shell/renderer/leak_detector.h', | 167 'shell/renderer/leak_detector.h', |
168 'shell/renderer/shell_content_renderer_client.cc', | 168 'shell/renderer/shell_content_renderer_client.cc', |
169 'shell/renderer/shell_content_renderer_client.h', | 169 'shell/renderer/shell_content_renderer_client.h', |
170 'shell/renderer/shell_render_frame_observer.cc', | 170 'shell/renderer/shell_render_frame_observer.cc', |
171 'shell/renderer/shell_render_frame_observer.h', | 171 'shell/renderer/shell_render_frame_observer.h', |
172 'shell/renderer/shell_render_process_observer.cc', | 172 'shell/renderer/shell_render_process_observer.cc', |
173 'shell/renderer/shell_render_process_observer.h', | 173 'shell/renderer/shell_render_process_observer.h', |
174 'shell/renderer/shell_render_view_observer.cc', | 174 'shell/renderer/shell_render_view_observer.cc', |
175 'shell/renderer/shell_render_view_observer.h', | 175 'shell/renderer/shell_render_view_observer.h', |
176 'shell/renderer/test_runner/key_code_mapping.cc', | |
177 'shell/renderer/test_runner/key_code_mapping.h', | 176 'shell/renderer/test_runner/key_code_mapping.h', |
178 'shell/renderer/test_runner/MockColorChooser.cpp', | 177 'shell/renderer/test_runner/MockColorChooser.cpp', |
179 'shell/renderer/test_runner/MockColorChooser.h', | 178 'shell/renderer/test_runner/MockColorChooser.h', |
180 'shell/renderer/test_runner/MockConstraints.cpp', | 179 'shell/renderer/test_runner/MockConstraints.cpp', |
181 'shell/renderer/test_runner/MockConstraints.h', | 180 'shell/renderer/test_runner/MockConstraints.h', |
182 'shell/renderer/test_runner/MockGrammarCheck.cpp', | 181 'shell/renderer/test_runner/MockGrammarCheck.cpp', |
183 'shell/renderer/test_runner/MockGrammarCheck.h', | 182 'shell/renderer/test_runner/MockGrammarCheck.h', |
184 'shell/renderer/test_runner/MockSpellCheck.cpp', | 183 'shell/renderer/test_runner/MockSpellCheck.cpp', |
185 'shell/renderer/test_runner/MockSpellCheck.h', | 184 'shell/renderer/test_runner/MockSpellCheck.h', |
186 'shell/renderer/test_runner/MockWebAudioDevice.cpp', | 185 'shell/renderer/test_runner/MockWebAudioDevice.cpp', |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 'Debug_Base': { | 550 'Debug_Base': { |
552 'msvs_settings': { | 551 'msvs_settings': { |
553 'VCLinkerTool': { | 552 'VCLinkerTool': { |
554 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 553 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
555 }, | 554 }, |
556 }, | 555 }, |
557 }, | 556 }, |
558 }, | 557 }, |
559 'msvs_large_pdb': 1, | 558 'msvs_large_pdb': 1, |
560 }], # OS=="win" | 559 }], # OS=="win" |
561 ['OS == "win" or toolkit_uses_gtk == 1', { | 560 ['OS == "win"', { |
562 'dependencies': [ | 561 'dependencies': [ |
563 '../sandbox/sandbox.gyp:sandbox', | 562 '../sandbox/sandbox.gyp:sandbox', |
564 ], | 563 ], |
565 }], # OS=="win" or toolkit_uses_gtk == 1 | 564 }], # OS=="win" |
566 ['OS=="mac"', { | 565 ['OS=="mac"', { |
567 'product_name': '<(content_shell_product_name)', | 566 'product_name': '<(content_shell_product_name)', |
568 'dependencies!': [ | 567 'dependencies!': [ |
569 'content_shell_lib', | 568 'content_shell_lib', |
570 ], | 569 ], |
571 'dependencies': [ | 570 'dependencies': [ |
572 'content_shell_framework', | 571 'content_shell_framework', |
573 'content_shell_helper_app', | 572 'content_shell_helper_app', |
574 ], | 573 ], |
575 'copies': [ | 574 'copies': [ |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1103 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1102 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1104 '--destination_dir', '<(dest_dir)', | 1103 '--destination_dir', '<(dest_dir)', |
1105 ], | 1104 ], |
1106 }, | 1105 }, |
1107 ], | 1106 ], |
1108 }, | 1107 }, |
1109 ], | 1108 ], |
1110 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1109 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1111 ] | 1110 ] |
1112 } | 1111 } |
OLD | NEW |