| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("commands") { | 5 source_set("commands") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "UIKit+ChromeExecuteCommand.h", | 8 "UIKit+ChromeExecuteCommand.h", |
| 9 "UIKit+ChromeExecuteCommand.mm", | 9 "UIKit+ChromeExecuteCommand.mm", |
| 10 "clear_browsing_data_command.h", | 10 "clear_browsing_data_command.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 sources = [ | 39 sources = [ |
| 40 "set_up_for_testing_command_unittest.mm", | 40 "set_up_for_testing_command_unittest.mm", |
| 41 ] | 41 ] |
| 42 deps = [ | 42 deps = [ |
| 43 ":commands", | 43 ":commands", |
| 44 "//base", | 44 "//base", |
| 45 "//testing/gtest", | 45 "//testing/gtest", |
| 46 "//url", | 46 "//url", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| 49 | |
| 50 # Clean Skeleton targets | |
| 51 source_set("commands_clean_skeleton") { | |
| 52 sources = [ | |
| 53 "settings_commands.h", | |
| 54 "tab_commands.h", | |
| 55 "tab_grid_commands.h", | |
| 56 "toolbar_commands.h", | |
| 57 ] | |
| 58 | |
| 59 configs += [ "//build/config/compiler:enable_arc" ] | |
| 60 } | |
| OLD | NEW |