| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/manifest.gni") | 8 import("//build/config/win/manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) | 307 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) |
| 308 } | 308 } |
| 309 | 309 |
| 310 if (is_chromeos) { | 310 if (is_chromeos) { |
| 311 deps += [ | 311 deps += [ |
| 312 "//chromeos", | 312 "//chromeos", |
| 313 "//ui/wm:test_support", | 313 "//ui/wm:test_support", |
| 314 ] | 314 ] |
| 315 } | 315 } |
| 316 | 316 |
| 317 if (is_linux) { | 317 if (is_linux && !is_chromecast) { |
| 318 deps += [ "//third_party/freetype2" ] | 318 deps += [ "//third_party/freetype2" ] |
| 319 } | 319 } |
| 320 | 320 |
| 321 if (!enable_plugins) { | 321 if (!enable_plugins) { |
| 322 sources -= [ | 322 sources -= [ |
| 323 "browser/shell_plugin_service_filter.cc", | 323 "browser/shell_plugin_service_filter.cc", |
| 324 "browser/shell_plugin_service_filter.h", | 324 "browser/shell_plugin_service_filter.h", |
| 325 ] | 325 ] |
| 326 } | 326 } |
| 327 } | 327 } |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 deps = [ | 458 deps = [ |
| 459 "//base", | 459 "//base", |
| 460 "//build/config/sanitizers:deps", | 460 "//build/config/sanitizers:deps", |
| 461 "//components/crash/content/tools:crash_service", | 461 "//components/crash/content/tools:crash_service", |
| 462 ] | 462 ] |
| 463 | 463 |
| 464 configs -= [ "//build/config/win:console" ] | 464 configs -= [ "//build/config/win:console" ] |
| 465 configs += [ "//build/config/win:windowed" ] | 465 configs += [ "//build/config/win:windowed" ] |
| 466 } | 466 } |
| 467 } | 467 } |
| OLD | NEW |