| 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("snapshot") { | 5 static_library("snapshot") { |
| 6 deps = [ | 6 deps = [ |
| 7 "../client", | 7 "../client", |
| 8 "../compat", | 8 "../compat", |
| 9 "../util", | 9 "../util", |
| 10 "//base", | 10 "//base", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 include_dirs = [ ".." ] | 13 include_dirs = [ ".." ] |
| 14 | 14 |
| 15 if (is_win) { | 15 if (is_win) { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 sources = [ | 128 sources = [ |
| 129 "api/module_annotations_win.cc", | 129 "api/module_annotations_win.cc", |
| 130 "api/module_annotations_win.h", | 130 "api/module_annotations_win.h", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| 133 } else { | 133 } else { |
| 134 group("snapshot_api") { | 134 group("snapshot_api") { |
| 135 } | 135 } |
| 136 } | 136 } |
| OLD | NEW |