| 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/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//extensions/shell/common/api:extensions_features", | 53 "//extensions/shell/common/api:extensions_features", |
| 54 "//extensions/utility", | 54 "//extensions/utility", |
| 55 "//skia", | 55 "//skia", |
| 56 "//third_party/WebKit/public:blink", | 56 "//third_party/WebKit/public:blink", |
| 57 "//third_party/cld", | 57 "//third_party/cld", |
| 58 "//ui/base", | 58 "//ui/base", |
| 59 "//ui/base/ime", | 59 "//ui/base/ime", |
| 60 "//v8", | 60 "//v8", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 # TODO(michaelpg): remove Mac support and always use aura. |
| 64 if (use_aura) { |
| 65 deps += [ "//ui/aura" ] |
| 66 |
| 67 if (use_x11) { |
| 68 deps += [ "//ui/events" ] |
| 69 } |
| 70 } |
| 71 |
| 63 sources = [ | 72 sources = [ |
| 64 "app/paths_mac.h", | 73 "app/paths_mac.h", |
| 65 "app/paths_mac.mm", | 74 "app/paths_mac.mm", |
| 66 "app/shell_main_delegate.cc", | 75 "app/shell_main_delegate.cc", |
| 67 "app/shell_main_delegate.h", | 76 "app/shell_main_delegate.h", |
| 68 "browser/api/identity/identity_api.cc", | 77 "browser/api/identity/identity_api.cc", |
| 69 "browser/api/identity/identity_api.h", | 78 "browser/api/identity/identity_api.h", |
| 70 "browser/default_shell_browser_main_delegate.cc", | 79 "browser/default_shell_browser_main_delegate.cc", |
| 71 "browser/default_shell_browser_main_delegate.h", | 80 "browser/default_shell_browser_main_delegate.h", |
| 72 "browser/delegates/shell_kiosk_delegate.cc", | 81 "browser/delegates/shell_kiosk_delegate.cc", |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//extensions/browser", | 360 "//extensions/browser", |
| 352 ] | 361 ] |
| 353 | 362 |
| 354 if (is_chromeos) { | 363 if (is_chromeos) { |
| 355 deps += [ | 364 deps += [ |
| 356 "//chromeos:test_support", | 365 "//chromeos:test_support", |
| 357 "//components/keyed_service/content", | 366 "//components/keyed_service/content", |
| 358 ] | 367 ] |
| 359 } | 368 } |
| 360 } | 369 } |
| OLD | NEW |