| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) | 306 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) |
| 307 } | 307 } |
| 308 | 308 |
| 309 if (is_chromeos) { | 309 if (is_chromeos) { |
| 310 deps += [ | 310 deps += [ |
| 311 "//chromeos", | 311 "//chromeos", |
| 312 "//ui/wm:test_support", | 312 "//ui/wm:test_support", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| 315 | 315 |
| 316 if (is_linux && !is_chromecast) { | 316 if (is_linux) { |
| 317 deps += [ "//third_party/freetype2" ] | 317 deps += [ "//third_party/freetype2" ] |
| 318 } | 318 } |
| 319 | 319 |
| 320 if (!enable_plugins) { | 320 if (!enable_plugins) { |
| 321 sources -= [ | 321 sources -= [ |
| 322 "browser/shell_plugin_service_filter.cc", | 322 "browser/shell_plugin_service_filter.cc", |
| 323 "browser/shell_plugin_service_filter.h", | 323 "browser/shell_plugin_service_filter.h", |
| 324 ] | 324 ] |
| 325 } | 325 } |
| 326 } | 326 } |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 sources = [ | 485 sources = [ |
| 486 "app/shell_content_main.cc", | 486 "app/shell_content_main.cc", |
| 487 "app/shell_content_main.h", | 487 "app/shell_content_main.h", |
| 488 ] | 488 ] |
| 489 | 489 |
| 490 deps = [ | 490 deps = [ |
| 491 ":content_shell_lib", | 491 ":content_shell_lib", |
| 492 ] | 492 ] |
| 493 } | 493 } |
| 494 } | 494 } |
| OLD | NEW |