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

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

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 if (use_aura || is_mac) { 129 if (use_aura || is_mac) {
130 deps += [ "//ui/compositor" ] 130 deps += [ "//ui/compositor" ]
131 } 131 }
132 132
133 if (use_ozone) { 133 if (use_ozone) {
134 deps += [ "//ui/ozone" ] 134 deps += [ "//ui/ozone" ]
135 } 135 }
136 136
137 if (is_win) { 137 if (is_win) {
138 deps += [ 138 deps += [
139 "//content:startup_helper_win", 139 "//content:sandbox_helper_win",
140 "//third_party/iaccessible2", 140 "//third_party/iaccessible2",
141 ] 141 ]
142 } 142 }
143 143
144 if (!is_android && !is_ios) { 144 if (!is_android && !is_ios) {
145 sources += [ 145 sources += [
146 "../browser/compositor/test/no_transport_image_transport_factory.cc", 146 "../browser/compositor/test/no_transport_image_transport_factory.cc",
147 "../browser/compositor/test/no_transport_image_transport_factory.h", 147 "../browser/compositor/test/no_transport_image_transport_factory.h",
148 ] 148 ]
149 deps += [ 149 deps += [
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 "//third_party/WebKit/public:blink", 570 "//third_party/WebKit/public:blink",
571 "//third_party/icu", 571 "//third_party/icu",
572 "//third_party/leveldatabase", 572 "//third_party/leveldatabase",
573 "//third_party/libjingle", 573 "//third_party/libjingle",
574 "//ui/compositor:test_support", 574 "//ui/compositor:test_support",
575 "//ui/gl", 575 "//ui/gl",
576 "//ui/gl:test_support", 576 "//ui/gl:test_support",
577 ] 577 ]
578 } 578 }
579 579
580 data_deps = [ "//third_party/mesa:osmesa" ] 580 data_deps = [
581 "//third_party/mesa:osmesa",
582 ]
581 583
582 if (!is_win) { 584 if (!is_win) {
583 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] 585 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ]
584 } 586 }
585 587
586 if (enable_plugins) { 588 if (enable_plugins) {
587 sources += 589 sources +=
588 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, 590 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources,
589 ".", 591 ".",
590 "//content") 592 "//content")
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 "//testing/gtest", 792 "//testing/gtest",
791 "//third_party/WebKit/public:blink", 793 "//third_party/WebKit/public:blink",
792 "//ui/base", 794 "//ui/base",
793 "//ui/gfx", 795 "//ui/gfx",
794 "//ui/gfx/geometry", 796 "//ui/gfx/geometry",
795 "//ui/gl", 797 "//ui/gl",
796 "//ui/gl:test_support", 798 "//ui/gl:test_support",
797 ] 799 ]
798 } 800 }
799 } 801 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698