OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
11 } | 11 } |
12 | 12 |
13 declare_args() { | 13 declare_args() { |
14 content_shell_product_name = "Content Shell" | 14 content_shell_product_name = "Content Shell" |
15 | 15 |
16 # The "19" is so that sites that sniff for version think that this is | 16 # The "19" is so that sites that sniff for version think that this is |
17 # something reasonably current; the "77.34.5" is a hint that this isn't a | 17 # something reasonably current; the "77.34.5" is a hint that this isn't a |
18 # standard Chrome. | 18 # standard Chrome. |
19 content_shell_version = "19.77.34.5" | 19 content_shell_version = "19.77.34.5" |
20 } | 20 } |
21 | 21 |
22 static_library("content_shell_lib") { | 22 static_library("content_shell_lib") { |
23 testonly = true | 23 testonly = true |
24 sources = [ | 24 sources = [ |
25 "android/shell_jni_registrar.cc", | 25 "android/shell_jni_registrar.cc", |
26 "android/shell_jni_registrar.h", | 26 "android/shell_jni_registrar.h", |
27 "android/shell_manager.cc", | 27 "android/shell_manager.cc", |
28 "android/shell_manager.h", | 28 "android/shell_manager.h", |
| 29 "app/blink_test_platform_support.h", |
| 30 "app/blink_test_platform_support_android.cc", |
| 31 "app/blink_test_platform_support_linux.cc", |
| 32 "app/blink_test_platform_support_mac.mm", |
| 33 "app/blink_test_platform_support_win.cc", |
29 "app/paths_mac.h", | 34 "app/paths_mac.h", |
30 "app/paths_mac.mm", | 35 "app/paths_mac.mm", |
31 "app/shell_crash_reporter_client.cc", | 36 "app/shell_crash_reporter_client.cc", |
32 "app/shell_crash_reporter_client.h", | 37 "app/shell_crash_reporter_client.h", |
33 "app/shell_main_delegate.cc", | 38 "app/shell_main_delegate.cc", |
34 "app/shell_main_delegate.h", | 39 "app/shell_main_delegate.h", |
35 "app/shell_main_delegate_mac.h", | 40 "app/shell_main_delegate_mac.h", |
36 "app/shell_main_delegate_mac.mm", | 41 "app/shell_main_delegate_mac.mm", |
37 "app/webkit_test_platform_support_android.cc", | |
38 "app/webkit_test_platform_support.h", | |
39 "app/webkit_test_platform_support_linux.cc", | |
40 "app/webkit_test_platform_support_mac.mm", | |
41 "app/webkit_test_platform_support_win.cc", | |
42 "browser/ipc_echo_message_filter.cc", | 42 "browser/ipc_echo_message_filter.cc", |
43 "browser/ipc_echo_message_filter.h", | 43 "browser/ipc_echo_message_filter.h", |
44 "browser/layout_test/layout_test_android.cc", | 44 "browser/layout_test/layout_test_android.cc", |
45 "browser/layout_test/layout_test_android.h", | 45 "browser/layout_test/layout_test_android.h", |
46 "browser/layout_test/layout_test_browser_context.cc", | 46 "browser/layout_test/layout_test_browser_context.cc", |
47 "browser/layout_test/layout_test_browser_context.h", | 47 "browser/layout_test/layout_test_browser_context.h", |
48 "browser/layout_test/layout_test_browser_main.cc", | 48 "browser/layout_test/layout_test_browser_main.cc", |
49 "browser/layout_test/layout_test_browser_main.h", | 49 "browser/layout_test/layout_test_browser_main.h", |
50 "browser/layout_test/layout_test_browser_main_parts.cc", | 50 "browser/layout_test/layout_test_browser_main_parts.cc", |
51 "browser/layout_test/layout_test_browser_main_parts.h", | 51 "browser/layout_test/layout_test_browser_main_parts.h", |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 if (is_android && !is_android_webview_build) { | 490 if (is_android && !is_android_webview_build) { |
491 # Some tests rely on this tool. It might be nicer if these tests relied on | 491 # Some tests rely on this tool. It might be nicer if these tests relied on |
492 # image diff rather than having content shell depend on it. | 492 # image diff rather than having content shell depend on it. |
493 datadeps = [ | 493 datadeps = [ |
494 "//tools/imagediff($host_toolchain)", | 494 "//tools/imagediff($host_toolchain)", |
495 ] | 495 ] |
496 } | 496 } |
497 } | 497 } |
498 | 498 |
499 } | 499 } |
OLD | NEW |