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 "browser_commands.h", |
10 "clear_browsing_data_command.h", | 11 "clear_browsing_data_command.h", |
11 "clear_browsing_data_command.mm", | 12 "clear_browsing_data_command.mm", |
12 "generic_chrome_command.h", | 13 "generic_chrome_command.h", |
13 "generic_chrome_command.mm", | 14 "generic_chrome_command.mm", |
14 "ios_command_ids.h", | 15 "ios_command_ids.h", |
15 "open_url_command.h", | 16 "open_url_command.h", |
16 "open_url_command.mm", | 17 "open_url_command.mm", |
17 "reading_list_add_command.h", | 18 "reading_list_add_command.h", |
18 "reading_list_add_command.mm", | 19 "reading_list_add_command.mm", |
19 "set_up_for_testing_command.h", | 20 "set_up_for_testing_command.h", |
(...skipping 19 matching lines...) Expand all Loading... |
39 sources = [ | 40 sources = [ |
40 "set_up_for_testing_command_unittest.mm", | 41 "set_up_for_testing_command_unittest.mm", |
41 ] | 42 ] |
42 deps = [ | 43 deps = [ |
43 ":commands", | 44 ":commands", |
44 "//base", | 45 "//base", |
45 "//testing/gtest", | 46 "//testing/gtest", |
46 "//url", | 47 "//url", |
47 ] | 48 ] |
48 } | 49 } |
OLD | NEW |