| 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 source_set("browser") { | 5 source_set("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "blimp_browser_context.cc", | 7 "blimp_browser_context.cc", |
| 8 "blimp_browser_context.h", | 8 "blimp_browser_context.h", |
| 9 "blimp_browser_main_parts.cc", | 9 "blimp_browser_main_parts.cc", |
| 10 "blimp_browser_main_parts.h", | 10 "blimp_browser_main_parts.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 ":browser", | 50 ":browser", |
| 51 "//base", | 51 "//base", |
| 52 "//base/test:run_all_unittests", | 52 "//base/test:run_all_unittests", |
| 53 "//base/test:test_support", | 53 "//base/test:test_support", |
| 54 "//blimp/common/proto", | 54 "//blimp/common/proto", |
| 55 "//blimp/engine/common", | 55 "//blimp/engine/common", |
| 56 "//blimp/net:blimp_net", | 56 "//blimp/net:blimp_net", |
| 57 "//blimp/net:test_support", |
| 57 "//testing/gmock", | 58 "//testing/gmock", |
| 58 "//testing/gtest", | 59 "//testing/gtest", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| OLD | NEW |