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

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: Fix lint errors/warnings 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
« no previous file with comments | « content/shell/app/shell_main.cc ('k') | extensions/shell/app/shell_main.cc » ('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_overrides/v8.gni") 9 import("//build_overrides/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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 "//third_party/WebKit/public:blink", 572 "//third_party/WebKit/public:blink",
573 "//third_party/icu", 573 "//third_party/icu",
574 "//third_party/leveldatabase", 574 "//third_party/leveldatabase",
575 "//third_party/libjingle", 575 "//third_party/libjingle",
576 "//ui/compositor:test_support", 576 "//ui/compositor:test_support",
577 "//ui/gl", 577 "//ui/gl",
578 "//ui/gl:test_support", 578 "//ui/gl:test_support",
579 ] 579 ]
580 } 580 }
581 581
582 data_deps = [ "//third_party/mesa:osmesa" ] 582 data_deps = [
583 "//third_party/mesa:osmesa",
584 ]
583 585
584 if (!is_win) { 586 if (!is_win) {
585 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] 587 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ]
586 } 588 }
587 589
588 if (enable_plugins) { 590 if (enable_plugins) {
589 sources += 591 sources +=
590 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, 592 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources,
591 ".", 593 ".",
592 "//content") 594 "//content")
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 "//testing/gtest", 794 "//testing/gtest",
793 "//third_party/WebKit/public:blink", 795 "//third_party/WebKit/public:blink",
794 "//ui/base", 796 "//ui/base",
795 "//ui/gfx", 797 "//ui/gfx",
796 "//ui/gfx/geometry", 798 "//ui/gfx/geometry",
797 "//ui/gl", 799 "//ui/gl",
798 "//ui/gl:test_support", 800 "//ui/gl:test_support",
799 ] 801 ]
800 } 802 }
801 } 803 }
OLDNEW
« no previous file with comments | « content/shell/app/shell_main.cc ('k') | extensions/shell/app/shell_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698