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

Side by Side Diff: content/test/BUILD.gn

Issue 1071633003: GN Windows component build fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/app/BUILD.gn ('k') | third_party/libusb/BUILD.gn » ('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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/module_args/v8.gni") 9 import("//build/module_args/v8.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
11 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 11 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
12 12
13 content_tests_gypi_values = 13 content_tests_gypi_values =
14 exec_script("//build/gypi_to_gn.py", 14 exec_script("//build/gypi_to_gn.py",
15 [ 15 [
16 rebase_path("../content_tests.gypi"), 16 rebase_path("../content_tests.gypi"),
17 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", 17 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir",
18 ], 18 ],
19 "scope", 19 "scope",
20 [ "../content_tests.gypi" ]) 20 [ "../content_tests.gypi" ])
21 21
22 # GYP version //content/content_tests.gypi:test_support_content 22 # GYP version //content/content_tests.gypi:test_support_content
23 static_library("test_support") { 23 source_set("test_support") {
24 testonly = true 24 testonly = true
25 public_deps = [] 25 public_deps = []
26 deps = [ 26 deps = [
27 "//cc/blink", 27 "//cc/blink",
28 "//content/public/app:both", 28 "//content/public/app:both",
29 "//content/public/browser", 29 "//content/public/browser",
30 "//content/public/common", 30 "//content/public/common",
31 "//net:test_support", 31 "//net:test_support",
32 "//skia", 32 "//skia",
33 "//storage/common", 33 "//storage/common",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 if (use_aura || is_mac) { 121 if (use_aura || is_mac) {
122 deps += [ "//ui/compositor" ] 122 deps += [ "//ui/compositor" ]
123 } 123 }
124 124
125 if (use_ozone) { 125 if (use_ozone) {
126 deps += [ "//ui/ozone" ] 126 deps += [ "//ui/ozone" ]
127 } 127 }
128 128
129 if (is_win) { 129 if (is_win) {
130 deps += [ "//third_party/iaccessible2" ] 130 deps += [
131 sources += [ "../app/startup_helper_win.cc" ] 131 "//content:startup_helper_win",
132 "//third_party/iaccessible2",
133 ]
132 } 134 }
133 135
134 if (!is_android && !is_ios) { 136 if (!is_android && !is_ios) {
135 sources += [ 137 sources += [
136 "../browser/compositor/test/no_transport_image_transport_factory.cc", 138 "../browser/compositor/test/no_transport_image_transport_factory.cc",
137 "../browser/compositor/test/no_transport_image_transport_factory.h", 139 "../browser/compositor/test/no_transport_image_transport_factory.h",
138 ] 140 ]
139 deps += [ 141 deps += [
140 "//ui/compositor", 142 "//ui/compositor",
141 "//third_party/libvpx", 143 "//third_party/libvpx",
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "//gpu/blink", 713 "//gpu/blink",
712 "//testing/gtest", 714 "//testing/gtest",
713 "//third_party/WebKit/public:blink", 715 "//third_party/WebKit/public:blink",
714 "//ui/base", 716 "//ui/base",
715 "//ui/gfx", 717 "//ui/gfx",
716 "//ui/gfx/geometry", 718 "//ui/gfx/geometry",
717 "//ui/gl", 719 "//ui/gl",
718 ] 720 ]
719 } 721 }
720 } 722 }
OLDNEW
« no previous file with comments | « content/app/BUILD.gn ('k') | third_party/libusb/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698