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

Side by Side Diff: content/content_shell.gypi

Issue 124493002: content: Add layout_test_helper target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make blink_tests depend on them Created 6 years, 11 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
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'shell/renderer/test_runner/MockColorChooser.cpp', 185 'shell/renderer/test_runner/MockColorChooser.cpp',
186 'shell/renderer/test_runner/MockColorChooser.h', 186 'shell/renderer/test_runner/MockColorChooser.h',
187 'shell/renderer/test_runner/MockConstraints.cpp', 187 'shell/renderer/test_runner/MockConstraints.cpp',
188 'shell/renderer/test_runner/MockConstraints.h', 188 'shell/renderer/test_runner/MockConstraints.h',
189 'shell/renderer/test_runner/MockGrammarCheck.cpp', 189 'shell/renderer/test_runner/MockGrammarCheck.cpp',
190 'shell/renderer/test_runner/MockGrammarCheck.h', 190 'shell/renderer/test_runner/MockGrammarCheck.h',
191 'shell/renderer/test_runner/MockSpellCheck.cpp', 191 'shell/renderer/test_runner/MockSpellCheck.cpp',
192 'shell/renderer/test_runner/MockSpellCheck.h', 192 'shell/renderer/test_runner/MockSpellCheck.h',
193 'shell/renderer/test_runner/MockWebAudioDevice.cpp', 193 'shell/renderer/test_runner/MockWebAudioDevice.cpp',
194 'shell/renderer/test_runner/MockWebAudioDevice.h', 194 'shell/renderer/test_runner/MockWebAudioDevice.h',
195 'shell/renderer/test_runner/MockWebMIDIAccessor.cpp',
196 'shell/renderer/test_runner/MockWebMIDIAccessor.h',
195 'shell/renderer/test_runner/MockWebMediaStreamCenter.cpp', 197 'shell/renderer/test_runner/MockWebMediaStreamCenter.cpp',
196 'shell/renderer/test_runner/MockWebMediaStreamCenter.h', 198 'shell/renderer/test_runner/MockWebMediaStreamCenter.h',
197 'shell/renderer/test_runner/MockWebMIDIAccessor.cpp', 199 'shell/renderer/test_runner/MockWebRTCDTMFSenderHandler.cpp',
198 'shell/renderer/test_runner/MockWebMIDIAccessor.h', 200 'shell/renderer/test_runner/MockWebRTCDTMFSenderHandler.h',
199 'shell/renderer/test_runner/MockWebRTCDataChannelHandler.cpp', 201 'shell/renderer/test_runner/MockWebRTCDataChannelHandler.cpp',
200 'shell/renderer/test_runner/MockWebRTCDataChannelHandler.h', 202 'shell/renderer/test_runner/MockWebRTCDataChannelHandler.h',
201 'shell/renderer/test_runner/MockWebRTCDTMFSenderHandler.cpp',
202 'shell/renderer/test_runner/MockWebRTCDTMFSenderHandler.h',
203 'shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.cpp', 203 'shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.cpp',
204 'shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.h', 204 'shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.h',
205 'shell/renderer/test_runner/MockWebSpeechInputController.cpp', 205 'shell/renderer/test_runner/MockWebSpeechInputController.cpp',
206 'shell/renderer/test_runner/MockWebSpeechInputController.h', 206 'shell/renderer/test_runner/MockWebSpeechInputController.h',
207 'shell/renderer/test_runner/MockWebSpeechRecognizer.cpp', 207 'shell/renderer/test_runner/MockWebSpeechRecognizer.cpp',
208 'shell/renderer/test_runner/MockWebSpeechRecognizer.h', 208 'shell/renderer/test_runner/MockWebSpeechRecognizer.h',
209 'shell/renderer/test_runner/NotificationPresenter.cpp', 209 'shell/renderer/test_runner/NotificationPresenter.cpp',
210 'shell/renderer/test_runner/NotificationPresenter.h', 210 'shell/renderer/test_runner/NotificationPresenter.h',
211 'shell/renderer/test_runner/SpellCheckClient.cpp', 211 'shell/renderer/test_runner/SpellCheckClient.cpp',
212 'shell/renderer/test_runner/SpellCheckClient.h', 212 'shell/renderer/test_runner/SpellCheckClient.h',
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 }], # OS=="android" and android_webview_build==0 610 }], # OS=="android" and android_webview_build==0
611 ], 611 ],
612 }, 612 },
613 { 613 {
614 'target_name': 'content_shell_builder', 614 'target_name': 'content_shell_builder',
615 'type': 'none', 615 'type': 'none',
616 'dependencies': [ 616 'dependencies': [
617 'content_shell', 617 'content_shell',
618 ], 618 ],
619 }, 619 },
620 {
621 'target_name': 'layout_test_helper',
622 'type': 'executable',
623 'sources': [
624 'shell/renderer/test_runner/helper/layout_test_helper_mac.mm',
625 'shell/renderer/test_runner/helper/layout_test_helper_win.cc',
626 ],
627 'conditions': [
628 ['OS=="mac"', {
629 'link_settings': {
630 'libraries': [
631 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
632 ],
633 },
634 }],
635 ],
636 },
620 ], 637 ],
621 'conditions': [ 638 'conditions': [
622 ['OS=="mac"', { 639 ['OS=="mac"', {
623 'targets': [ 640 'targets': [
624 { 641 {
625 'target_name': 'content_shell_framework', 642 'target_name': 'content_shell_framework',
626 'type': 'shared_library', 643 'type': 'shared_library',
627 'product_name': '<(content_shell_product_name) Framework', 644 'product_name': '<(content_shell_product_name) Framework',
628 'mac_bundle': 1, 645 'mac_bundle': 1,
629 'mac_bundle_resources': [ 646 'mac_bundle_resources': [
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 961 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
945 '--destination_dir', '<(dest_dir)', 962 '--destination_dir', '<(dest_dir)',
946 ], 963 ],
947 }, 964 },
948 ], 965 ],
949 }, 966 },
950 ], 967 ],
951 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 968 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
952 ] 969 ]
953 } 970 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698