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

Side by Side Diff: third_party/WebKit/Source/web/BUILD.gn

Issue 2152783002: Enable precompiled headers for Blink on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up comments Created 4 years, 5 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 | « third_party/WebKit/Source/platform/heap/BUILD.gn ('k') | third_party/WebKit/Source/web/web.gyp » ('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 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/core/core.gni") 9 import("//third_party/WebKit/Source/core/core.gni")
10 import("//third_party/WebKit/Source/modules/modules.gni") 10 import("//third_party/WebKit/Source/modules/modules.gni")
(...skipping 18 matching lines...) Expand all
29 "//third_party/icu", 29 "//third_party/icu",
30 "//ui/gfx/geometry", 30 "//ui/gfx/geometry",
31 "//v8", 31 "//v8",
32 ] 32 ]
33 33
34 configs += [ 34 configs += [
35 "//build/config/compiler:wexit_time_destructors", 35 "//build/config/compiler:wexit_time_destructors",
36 "//third_party/WebKit/Source:config", 36 "//third_party/WebKit/Source:config",
37 "//third_party/WebKit/Source:inside_blink", 37 "//third_party/WebKit/Source:inside_blink",
38 "//third_party/WebKit/Source:non_test_config", 38 "//third_party/WebKit/Source:non_test_config",
39 "//third_party/WebKit/Source/core:blink_core_pch",
39 ] 40 ]
40 41
41 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] 42 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ]
42 43
43 sources = web_gypi.web_files 44 sources = web_gypi.web_files
44 45
45 if (!use_default_render_theme) { 46 if (!use_default_render_theme) {
46 sources -= [ "default/WebRenderTheme.cpp" ] 47 sources -= [ "default/WebRenderTheme.cpp" ]
47 } 48 }
48 49
(...skipping 23 matching lines...) Expand all
72 "//third_party/WebKit/Source/core:testing", 73 "//third_party/WebKit/Source/core:testing",
73 "//third_party/WebKit/Source/modules:modules_testing", 74 "//third_party/WebKit/Source/modules:modules_testing",
74 "//third_party/WebKit/Source/wtf", 75 "//third_party/WebKit/Source/wtf",
75 "//v8", 76 "//v8",
76 ] 77 ]
77 78
78 sources = [ 79 sources = [
79 "WebTestingSupport.cpp", 80 "WebTestingSupport.cpp",
80 ] 81 ]
81 82
82 configs += [ "//third_party/WebKit/Source:config" ] 83 configs += [
84 "//third_party/WebKit/Source:blink_pch",
85 "//third_party/WebKit/Source:config",
86 ]
83 87
84 include_dirs = [ "$root_gen_dir/blink" ] 88 include_dirs = [ "$root_gen_dir/blink" ]
85 } 89 }
86 90
87 group("webkit_unit_tests_data") { 91 group("webkit_unit_tests_data") {
88 data = [ 92 data = [
89 "tests/data/", 93 "tests/data/",
90 "../core/paint/test_data/", 94 "../core/paint/test_data/",
91 ] 95 ]
92 } 96 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 sources = [ 130 sources = [
127 "tests/RunAllTests.cpp", 131 "tests/RunAllTests.cpp",
128 ] 132 ]
129 sources += web_unittest_files 133 sources += web_unittest_files
130 sources += bindings_unittest_files 134 sources += bindings_unittest_files
131 sources += core_unittest_files 135 sources += core_unittest_files
132 sources += modules_unittest_files 136 sources += modules_unittest_files
133 sources += platform_web_unittest_files 137 sources += platform_web_unittest_files
134 138
135 configs += [ 139 configs += [
140 "//third_party/WebKit/Source:blink_pch",
136 "//third_party/WebKit/Source:config", 141 "//third_party/WebKit/Source:config",
137 "//third_party/WebKit/Source:inside_blink", 142 "//third_party/WebKit/Source:inside_blink",
138 ] 143 ]
139 144
140 if (is_android) { 145 if (is_android) {
141 deps += [ 146 deps += [
142 "//base:base_java", 147 "//base:base_java",
143 "//content/public/android:content_java", 148 "//content/public/android:content_java",
144 "//content/shell/android:content_shell_assets", 149 "//content/shell/android:content_shell_assets",
145 "//net/android:net_java", 150 "//net/android:net_java",
146 ] 151 ]
147 } 152 }
148 } 153 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/heap/BUILD.gn ('k') | third_party/WebKit/Source/web/web.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698