Chromium Code Reviews| 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("tools") { | 5 source_set("tools") { |
| 6 sources = [ | 6 sources = [ |
| 7 "tools_coordinator.h", | 7 "tools_coordinator.h", |
| 8 "tools_coordinator.mm", | 8 "tools_coordinator.mm", |
| 9 "tools_mediator.h", | 9 "tools_mediator.h", |
| 10 "tools_mediator.mm", | 10 "tools_mediator.mm", |
| 11 "tools_mediator_private.h", | |
| 12 "tools_menu_model.h", | |
| 13 "tools_menu_model.mm", | |
| 11 ] | 14 ] |
| 12 | 15 |
| 13 configs += [ "//build/config/compiler:enable_arc" ] | 16 configs += [ "//build/config/compiler:enable_arc" ] |
| 14 | 17 |
| 15 deps = [ | 18 deps = [ |
| 16 ":tools_ui", | 19 ":tools_ui", |
| 17 "//base", | 20 "//base", |
| 21 "//ios/chrome/browser/ui/tools_menu", | |
|
sczs
2017/05/16 20:31:03
I will cleanup this on a following CL. The constan
lpromero
2017/05/23 09:00:43
Can you either add a comment in the code, or link
sczs
2017/05/23 20:28:18
Done.
| |
| 18 "//ios/clean/chrome/browser/ui/animators", | 22 "//ios/clean/chrome/browser/ui/animators", |
| 19 "//ios/clean/chrome/browser/ui/commands", | 23 "//ios/clean/chrome/browser/ui/commands", |
| 20 "//ios/clean/chrome/browser/ui/presenters", | 24 "//ios/clean/chrome/browser/ui/presenters", |
| 21 "//ios/shared/chrome/browser/ui/browser_list", | 25 "//ios/shared/chrome/browser/ui/browser_list", |
| 22 "//ios/shared/chrome/browser/ui/coordinators", | 26 "//ios/shared/chrome/browser/ui/coordinators", |
| 23 "//ios/shared/chrome/browser/ui/tools_menu", | 27 "//ios/shared/chrome/browser/ui/tools_menu", |
| 24 ] | 28 ] |
| 25 } | 29 } |
| 26 | 30 |
| 27 source_set("tools_ui") { | 31 source_set("tools_ui") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 deps = [ | 65 deps = [ |
| 62 ":tools", | 66 ":tools", |
| 63 ":tools_ui", | 67 ":tools_ui", |
| 64 "//base/test:test_support", | 68 "//base/test:test_support", |
| 65 "//ios/chrome/test/base", | 69 "//ios/chrome/test/base", |
| 66 "//ios/shared/chrome/browser/ui/tools_menu", | 70 "//ios/shared/chrome/browser/ui/tools_menu", |
| 67 "//testing/gtest", | 71 "//testing/gtest", |
| 68 "//third_party/ocmock", | 72 "//third_party/ocmock", |
| 69 ] | 73 ] |
| 70 } | 74 } |
| OLD | NEW |