| 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 deps = [] | 25 deps = [] |
| 26 datadeps = [] | 26 datadeps = [] |
| 27 | 27 |
| 28 # TODO(GYP) mac_bundle_resources, xcode_settings | 28 # TODO(GYP) mac_bundle_resources, xcode_settings |
| 29 | 29 |
| 30 # TODO(GYP) order_profiling, order_text_section | 30 # TODO(GYP) order_profiling, order_text_section |
| 31 | 31 |
| 32 if (is_win) { | 32 if (is_win) { |
| 33 sources += [ | 33 sources += [ |
| 34 "app/chrome_exe_main_win.cc", | 34 "app/chrome_exe_main_win.cc", |
| 35 "app/chrome_watcher_client_win.cc", |
| 36 "app/chrome_watcher_client_win.h", |
| 37 "app/chrome_watcher_command_line_win.cc", |
| 38 "app/chrome_watcher_command_line_win.h", |
| 35 "app/client_util.cc", | 39 "app/client_util.cc", |
| 36 "app/client_util.h", | 40 "app/client_util.h", |
| 37 "app/signature_validator_win.cc", | 41 "app/signature_validator_win.cc", |
| 38 "app/signature_validator_win.h", | 42 "app/signature_validator_win.h", |
| 39 "//content/app/startup_helper_win.cc", | 43 "//content/app/startup_helper_win.cc", |
| 40 ] | 44 ] |
| 41 deps += [ "//ui/gfx" ] | 45 deps += [ "//ui/gfx" ] |
| 42 } else if (use_aura) { | 46 } else if (use_aura) { |
| 43 # Non-Windows aura entrypoint. | 47 # Non-Windows aura entrypoint. |
| 44 sources += [ "app/chrome_exe_main_aura.cc" ] | 48 sources += [ "app/chrome_exe_main_aura.cc" ] |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "//chrome/browser", | 586 "//chrome/browser", |
| 583 "//chrome/browser/ui", | 587 "//chrome/browser/ui", |
| 584 "//chrome/plugin", | 588 "//chrome/plugin", |
| 585 "//chrome/renderer", | 589 "//chrome/renderer", |
| 586 "//chrome/utility", | 590 "//chrome/utility", |
| 587 "//components/enhanced_bookmarks", | 591 "//components/enhanced_bookmarks", |
| 588 "//content/public/app:browser", | 592 "//content/public/app:browser", |
| 589 ] | 593 ] |
| 590 } | 594 } |
| 591 } | 595 } |
| OLD | NEW |