| 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("native_app_launcher") { | 5 source_set("native_app_launcher") { |
| 6 sources = [ | 6 sources = [ |
| 7 "ios_appstore_ids.h", | 7 "ios_appstore_ids.h", |
| 8 "ios_appstore_ids.mm", | 8 "ios_appstore_ids.mm", |
| 9 "native_app_infobar_controller.h", | 9 "native_app_infobar_controller.h", |
| 10 "native_app_infobar_controller.mm", | 10 "native_app_infobar_controller.mm", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ":native_app_launcher", | 35 ":native_app_launcher", |
| 36 "//base", | 36 "//base", |
| 37 "//base/test:test_support", | 37 "//base/test:test_support", |
| 38 "//components/infobars/core", | 38 "//components/infobars/core", |
| 39 "//ios/chrome/browser", | 39 "//ios/chrome/browser", |
| 40 "//ios/chrome/test:test_support", | 40 "//ios/chrome/test:test_support", |
| 41 "//ios/public/provider/chrome/browser", | 41 "//ios/public/provider/chrome/browser", |
| 42 "//ios/public/provider/chrome/browser:test_support", | 42 "//ios/public/provider/chrome/browser:test_support", |
| 43 "//ios/public/provider/chrome/browser/native_app_launcher", | 43 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 44 "//ios/web", | 44 "//ios/web", |
| 45 "//ios/web:test_support", | |
| 46 "//net:test_support", | 45 "//net:test_support", |
| 47 "//testing/gmock", | 46 "//testing/gmock", |
| 48 "//testing/gtest", | 47 "//testing/gtest", |
| 49 "//url", | 48 "//url", |
| 50 ] | 49 ] |
| 51 } | 50 } |
| 52 | 51 |
| 53 source_set("native_app_launcher_internal") { | 52 source_set("native_app_launcher_internal") { |
| 54 configs += [ "//build/config/compiler:enable_arc" ] | 53 configs += [ "//build/config/compiler:enable_arc" ] |
| 55 sources = [ | 54 sources = [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//components/infobars/core", | 94 "//components/infobars/core", |
| 96 "//ios/chrome/browser", | 95 "//ios/chrome/browser", |
| 97 "//ios/chrome/browser/infobars:infobars", | 96 "//ios/chrome/browser/infobars:infobars", |
| 98 "//ios/chrome/browser/web:test_support", | 97 "//ios/chrome/browser/web:test_support", |
| 99 "//ios/chrome/test:test_support", | 98 "//ios/chrome/test:test_support", |
| 100 "//ios/public/provider/chrome/browser", | 99 "//ios/public/provider/chrome/browser", |
| 101 "//ios/public/provider/chrome/browser:test_support", | 100 "//ios/public/provider/chrome/browser:test_support", |
| 102 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", | 101 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", |
| 103 "//ios/public/provider/chrome/browser/signin:test_support", | 102 "//ios/public/provider/chrome/browser/signin:test_support", |
| 104 "//ios/web", | 103 "//ios/web", |
| 105 "//ios/web:test_support", | 104 "//ios/web/public/test/fakes:test_support", |
| 106 "//net:test_support", | 105 "//net:test_support", |
| 107 "//testing/gmock", | 106 "//testing/gmock", |
| 108 "//testing/gtest", | 107 "//testing/gtest", |
| 109 "//ui/base", | 108 "//ui/base", |
| 110 "//url", | 109 "//url", |
| 111 ] | 110 ] |
| 112 } | 111 } |
| OLD | NEW |