| 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 # This is the part of the shim process compiled into Chrome. It runs only | 5 # This is the part of the shim process compiled into Chrome. It runs only |
| 6 # in the shim process, after the shim finds and loads the Chrome | 6 # in the shim process, after the shim finds and loads the Chrome |
| 7 # Framework bundle. | 7 # Framework bundle. |
| 8 source_set("app_shim") { | 8 source_set("app_shim") { |
| 9 sources = [ | 9 sources = [ |
| 10 "chrome_main_app_mode_mac.mm", | 10 "chrome_main_app_mode_mac.mm", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 deps = [ | 13 deps = [ |
| 14 "//chrome:strings", |
| 14 "//chrome/common:app_mode_app_support", | 15 "//chrome/common:app_mode_app_support", |
| 15 "//chrome:strings", | |
| 16 ] | 16 ] |
| 17 } | 17 } |
| OLD | NEW |