OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mac/rules.gni") | 5 import("//build/config/mac/rules.gni") |
6 import("//build/mac/tweak_info_plist.gni") | 6 import("//build/mac/tweak_info_plist.gni") |
7 import("//build/util/branding.gni") | 7 import("//build/util/branding.gni") |
8 | 8 |
9 # This is the part of the shim process compiled into Chrome. It runs only | 9 # This is the part of the shim process compiled into Chrome. It runs only |
10 # in the shim process, after the shim finds and loads the Chrome | 10 # in the shim process, after the shim finds and loads the Chrome |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 sources = [ | 38 sources = [ |
39 "app_mode_loader_mac.mm", | 39 "app_mode_loader_mac.mm", |
40 ] | 40 ] |
41 | 41 |
42 deps = [ | 42 deps = [ |
43 "//chrome/common:app_mode_app_support", | 43 "//chrome/common:app_mode_app_support", |
44 ] | 44 ] |
45 | 45 |
46 libs = [ | 46 libs = [ |
| 47 "AppKit.framework", |
47 "CoreFoundation.framework", | 48 "CoreFoundation.framework", |
48 "Foundation.framework", | 49 "Foundation.framework", |
49 ] | 50 ] |
50 } | 51 } |
OLD | NEW |