| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//components/toolbar:test_support", | 123 "//components/toolbar:test_support", |
| 124 "//components/update_client:test_support", | 124 "//components/update_client:test_support", |
| 125 "//components/zoom:test_support", | 125 "//components/zoom:test_support", |
| 126 "//content/public/app:both", | 126 "//content/public/app:both", |
| 127 "//content/test:test_support", | 127 "//content/test:test_support", |
| 128 "//extensions/features", | 128 "//extensions/features", |
| 129 "//gpu/ipc/service", | 129 "//gpu/ipc/service", |
| 130 "//media:media_features", | 130 "//media:media_features", |
| 131 "//net", | 131 "//net", |
| 132 "//net:test_support", | 132 "//net:test_support", |
| 133 "//pdf", |
| 133 "//ppapi/features", | 134 "//ppapi/features", |
| 134 "//printing/features", | 135 "//printing/features", |
| 135 "//skia", | 136 "//skia", |
| 136 "//sql", | 137 "//sql", |
| 137 "//sql:test_support", | 138 "//sql:test_support", |
| 138 "//testing/gmock", | 139 "//testing/gmock", |
| 139 "//testing/gtest", | 140 "//testing/gtest", |
| 140 "//third_party/zlib", | 141 "//third_party/zlib", |
| 141 "//ui/gfx:test_support", | 142 "//ui/gfx:test_support", |
| 142 "//ui/message_center:test_support", | 143 "//ui/message_center:test_support", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 ] | 221 ] |
| 221 } | 222 } |
| 222 | 223 |
| 223 if (use_aura) { | 224 if (use_aura) { |
| 224 sources += [ | 225 sources += [ |
| 225 "base/test_browser_window_aura.cc", | 226 "base/test_browser_window_aura.cc", |
| 226 "base/test_browser_window_aura.h", | 227 "base/test_browser_window_aura.h", |
| 227 ] | 228 ] |
| 228 } | 229 } |
| 229 | 230 |
| 230 if (enable_plugins && enable_pdf) { | |
| 231 public_deps += [ "//pdf" ] | |
| 232 } | |
| 233 | |
| 234 if (use_ash) { | 231 if (use_ash) { |
| 235 sources += [ | 232 sources += [ |
| 236 "base/default_ash_event_generator_delegate.cc", | 233 "base/default_ash_event_generator_delegate.cc", |
| 237 "base/default_ash_event_generator_delegate.h", | 234 "base/default_ash_event_generator_delegate.h", |
| 238 ] | 235 ] |
| 239 | 236 |
| 240 public_deps += [ | 237 public_deps += [ |
| 241 "//ash", | 238 "//ash", |
| 242 "//ash/test:ash_with_aura_test_support", | 239 "//ash/test:ash_with_aura_test_support", |
| 243 "//ash/test:test_support_with_content", | 240 "//ash/test:test_support_with_content", |
| (...skipping 4883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5127 } | 5124 } |
| 5128 | 5125 |
| 5129 if (is_win) { | 5126 if (is_win) { |
| 5130 loadable_module("conflicts_dll") { | 5127 loadable_module("conflicts_dll") { |
| 5131 testonly = true | 5128 testonly = true |
| 5132 sources = [ | 5129 sources = [ |
| 5133 "conflicts/conflicts_dll.cc", | 5130 "conflicts/conflicts_dll.cc", |
| 5134 ] | 5131 ] |
| 5135 } | 5132 } |
| 5136 } | 5133 } |
| OLD | NEW |