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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 ], | 70 ], |
71 'include_dirs': [ | 71 'include_dirs': [ |
72 '..', | 72 '..', |
73 ], | 73 ], |
74 'sources': [ | 74 'sources': [ |
75 # Note: sources list duplicated in GN build. | 75 # Note: sources list duplicated in GN build. |
76 'shell/android/shell_jni_registrar.cc', | 76 'shell/android/shell_jni_registrar.cc', |
77 'shell/android/shell_jni_registrar.h', | 77 'shell/android/shell_jni_registrar.h', |
78 'shell/android/shell_manager.cc', | 78 'shell/android/shell_manager.cc', |
79 'shell/android/shell_manager.h', | 79 'shell/android/shell_manager.h', |
| 80 'shell/app/blink_test_platform_support.h', |
| 81 'shell/app/blink_test_platform_support_android.cc', |
| 82 'shell/app/blink_test_platform_support_linux.cc', |
| 83 'shell/app/blink_test_platform_support_mac.mm', |
| 84 'shell/app/blink_test_platform_support_win.cc', |
80 'shell/app/paths_mac.h', | 85 'shell/app/paths_mac.h', |
81 'shell/app/paths_mac.mm', | 86 'shell/app/paths_mac.mm', |
82 'shell/app/shell_crash_reporter_client.cc', | 87 'shell/app/shell_crash_reporter_client.cc', |
83 'shell/app/shell_crash_reporter_client.h', | 88 'shell/app/shell_crash_reporter_client.h', |
84 'shell/app/shell_main_delegate.cc', | 89 'shell/app/shell_main_delegate.cc', |
85 'shell/app/shell_main_delegate.h', | 90 'shell/app/shell_main_delegate.h', |
86 'shell/app/shell_main_delegate_mac.h', | 91 'shell/app/shell_main_delegate_mac.h', |
87 'shell/app/shell_main_delegate_mac.mm', | 92 'shell/app/shell_main_delegate_mac.mm', |
88 'shell/app/webkit_test_platform_support_android.cc', | |
89 'shell/app/webkit_test_platform_support.h', | |
90 'shell/app/webkit_test_platform_support_linux.cc', | |
91 'shell/app/webkit_test_platform_support_mac.mm', | |
92 'shell/app/webkit_test_platform_support_win.cc', | |
93 'shell/browser/ipc_echo_message_filter.cc', | 93 'shell/browser/ipc_echo_message_filter.cc', |
94 'shell/browser/ipc_echo_message_filter.h', | 94 'shell/browser/ipc_echo_message_filter.h', |
95 'shell/browser/layout_test/layout_test_android.cc', | 95 'shell/browser/layout_test/layout_test_android.cc', |
96 'shell/browser/layout_test/layout_test_android.h', | 96 'shell/browser/layout_test/layout_test_android.h', |
97 'shell/browser/layout_test/layout_test_browser_context.cc', | 97 'shell/browser/layout_test/layout_test_browser_context.cc', |
98 'shell/browser/layout_test/layout_test_browser_context.h', | 98 'shell/browser/layout_test/layout_test_browser_context.h', |
99 'shell/browser/layout_test/layout_test_browser_main.cc', | 99 'shell/browser/layout_test/layout_test_browser_main.cc', |
100 'shell/browser/layout_test/layout_test_browser_main.h', | 100 'shell/browser/layout_test/layout_test_browser_main.h', |
101 'shell/browser/layout_test/layout_test_browser_main_parts.cc', | 101 'shell/browser/layout_test/layout_test_browser_main_parts.cc', |
102 'shell/browser/layout_test/layout_test_browser_main_parts.h', | 102 'shell/browser/layout_test/layout_test_browser_main_parts.h', |
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1135 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1135 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1136 '--destination_dir', '<(dest_dir)', | 1136 '--destination_dir', '<(dest_dir)', |
1137 ], | 1137 ], |
1138 }, | 1138 }, |
1139 ], | 1139 ], |
1140 }, | 1140 }, |
1141 ], | 1141 ], |
1142 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1142 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1143 ] | 1143 ] |
1144 } | 1144 } |
OLD | NEW |