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

Side by Side Diff: content/content_shell.gypi

Issue 1799923003: Add an end-to-end test that excercises Mojo with a sandbox. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
« no previous file with comments | « content/content_common_mojo_bindings.gyp ('k') | content/content_tests.gypi » ('j') | 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 'content_shell_version': '99.77.34.5', 8 'content_shell_version': '99.77.34.5',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 12 matching lines...) Expand all
23 'app/strings/content_strings.gyp:content_strings', 23 'app/strings/content_strings.gyp:content_strings',
24 'content.gyp:content_app_both', 24 'content.gyp:content_app_both',
25 'content.gyp:content_browser', 25 'content.gyp:content_browser',
26 'content.gyp:content_common', 26 'content.gyp:content_common',
27 'content.gyp:content_gpu', 27 'content.gyp:content_gpu',
28 'content.gyp:content_plugin', 28 'content.gyp:content_plugin',
29 'content.gyp:content_ppapi_plugin', 29 'content.gyp:content_ppapi_plugin',
30 'content.gyp:content_renderer', 30 'content.gyp:content_renderer',
31 'content.gyp:content_resources', 31 'content.gyp:content_resources',
32 'content.gyp:content_utility', 32 'content.gyp:content_utility',
33 'content_common_mojo_bindings.gyp:content_common_mojo_bindings_mojom',
33 'content_shell_resources', 34 'content_shell_resources',
34 'content_test_mojo_bindings', 35 'content_test_mojo_bindings',
35 'copy_test_netscape_plugin', 36 'copy_test_netscape_plugin',
36 'layouttest_support_content', 37 'layouttest_support_content',
37 '../base/base.gyp:base', 38 '../base/base.gyp:base',
38 '../base/base.gyp:base_static', 39 '../base/base.gyp:base_static',
39 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 40 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
40 '../cc/blink/cc_blink.gyp:cc_blink', 41 '../cc/blink/cc_blink.gyp:cc_blink',
41 '../cc/cc.gyp:cc', 42 '../cc/cc.gyp:cc',
42 '../components/components.gyp:crash_component_breakpad_to_be_deleted', 43 '../components/components.gyp:crash_component_breakpad_to_be_deleted',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'shell/renderer/layout_test/leak_detector.cc', 224 'shell/renderer/layout_test/leak_detector.cc',
224 'shell/renderer/layout_test/leak_detector.h', 225 'shell/renderer/layout_test/leak_detector.h',
225 'shell/renderer/layout_test/test_media_stream_renderer_factory.cc', 226 'shell/renderer/layout_test/test_media_stream_renderer_factory.cc',
226 'shell/renderer/layout_test/test_media_stream_renderer_factory.h', 227 'shell/renderer/layout_test/test_media_stream_renderer_factory.h',
227 'shell/renderer/layout_test/test_video_frame_provider.cc', 228 'shell/renderer/layout_test/test_video_frame_provider.cc',
228 'shell/renderer/layout_test/test_video_frame_provider.h', 229 'shell/renderer/layout_test/test_video_frame_provider.h',
229 'shell/renderer/shell_content_renderer_client.cc', 230 'shell/renderer/shell_content_renderer_client.cc',
230 'shell/renderer/shell_content_renderer_client.h', 231 'shell/renderer/shell_content_renderer_client.h',
231 'shell/renderer/shell_render_view_observer.cc', 232 'shell/renderer/shell_render_view_observer.cc',
232 'shell/renderer/shell_render_view_observer.h', 233 'shell/renderer/shell_render_view_observer.h',
234 'shell/utility/mojo_test_impl.cc',
235 'shell/utility/mojo_test_impl.h',
233 'shell/utility/shell_content_utility_client.cc', 236 'shell/utility/shell_content_utility_client.cc',
234 'shell/utility/shell_content_utility_client.h', 237 'shell/utility/shell_content_utility_client.h',
235 ], 238 ],
236 'msvs_settings': { 239 'msvs_settings': {
237 'VCLinkerTool': { 240 'VCLinkerTool': {
238 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 241 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
239 }, 242 },
240 }, 243 },
241 'conditions': [ 244 'conditions': [
242 ['OS=="win"', { 245 ['OS=="win"', {
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 980 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
978 '--destination_dir', '<(dest_dir)', 981 '--destination_dir', '<(dest_dir)',
979 ], 982 ],
980 }, 983 },
981 ], 984 ],
982 }, 985 },
983 ], 986 ],
984 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 987 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
985 ] 988 ]
986 } 989 }
OLDNEW
« no previous file with comments | « content/content_common_mojo_bindings.gyp ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698