| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 if (is_android) { | 268 if (is_android) { |
| 269 deps += [ "//content/shell/android:content_shell_jni_headers" ] | 269 deps += [ "//content/shell/android:content_shell_jni_headers" ] |
| 270 #deps -= [ "copy_test_netscape_plugin" ] TODO(GYP) | 270 #deps -= [ "copy_test_netscape_plugin" ] TODO(GYP) |
| 271 } | 271 } |
| 272 | 272 |
| 273 if (is_posix && !is_mac) { | 273 if (is_posix && !is_mac) { |
| 274 deps += [ "//components/crash/browser" ] | 274 deps += [ "//components/crash/browser" ] |
| 275 } | 275 } |
| 276 | 276 |
| 277 if (use_aura) { | 277 if (use_aura) { |
| 278 sources -= [ "browser/shell_android.cc" ] |
| 278 deps += [ | 279 deps += [ |
| 279 "//ui/aura", | 280 "//ui/aura", |
| 280 "//ui/aura:test_support", | 281 "//ui/aura:test_support", |
| 281 "//ui/events", | 282 "//ui/events", |
| 282 "//ui/strings", | 283 "//ui/strings", |
| 283 "//ui/wm", | 284 "//ui/wm", |
| 284 ] | 285 ] |
| 285 | 286 |
| 286 if (toolkit_views) { | 287 if (toolkit_views) { |
| 287 sources += [ "browser/shell_views.cc" ] | 288 sources += [ "browser/shell_views.cc" ] |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 459 |
| 459 deps = [ | 460 deps = [ |
| 460 "//base", | 461 "//base", |
| 461 "//components/crash/tools:crash_service", | 462 "//components/crash/tools:crash_service", |
| 462 ] | 463 ] |
| 463 | 464 |
| 464 configs -= [ "//build/config/win:console" ] | 465 configs -= [ "//build/config/win:console" ] |
| 465 configs += [ "//build/config/win:windowed" ] | 466 configs += [ "//build/config/win:windowed" ] |
| 466 } | 467 } |
| 467 } | 468 } |
| OLD | NEW |