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/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
10 | 10 |
11 if (is_android) { | 11 if (is_android) { |
12 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
13 } | 13 } |
14 | 14 |
15 if (!is_android) { | 15 # TODO(brettw) enable on Windows. This should link but is disabled due to bot |
| 16 # capacity issues. |
| 17 if (!is_android && !is_win) { |
16 # TODO(GYP) for Windows need to the the reorder-imports step which probably | 18 # TODO(GYP) for Windows need to the the reorder-imports step which probably |
17 # means adding another target and renaming this to chrome_initial like in GYP. | 19 # means adding another target and renaming this to chrome_initial like in GYP. |
18 executable("chrome") { | 20 executable("chrome") { |
19 # Because the sources list varies so significantly per-platform, generally | 21 # Because the sources list varies so significantly per-platform, generally |
20 # each platform lists its own files rather than relying on filtering or | 22 # each platform lists its own files rather than relying on filtering or |
21 # removing unused files. | 23 # removing unused files. |
22 sources = [ | 24 sources = [ |
23 "app/chrome_exe_resource.h", | 25 "app/chrome_exe_resource.h", |
24 ] | 26 ] |
25 deps = [] | 27 deps = [] |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 "//chrome/browser", | 677 "//chrome/browser", |
676 "//chrome/browser/ui", | 678 "//chrome/browser/ui", |
677 "//chrome/plugin", | 679 "//chrome/plugin", |
678 "//chrome/renderer", | 680 "//chrome/renderer", |
679 "//chrome/utility", | 681 "//chrome/utility", |
680 "//components/enhanced_bookmarks", | 682 "//components/enhanced_bookmarks", |
681 "//content/public/app:browser", | 683 "//content/public/app:browser", |
682 ] | 684 ] |
683 } | 685 } |
684 } | 686 } |
OLD | NEW |