Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # Strings for the embedder, we build different resource sets based on |enable_bl imp_client| build | |
| 6 # flag in //blimp/client/core/resources:strings. | |
| 7 group("strings") { | |
|
David Trainor- moved to gerrit
2016/10/28 04:20:08
Leave this as resources
xingliu
2016/10/28 22:50:31
Done.
| |
| 8 visibility = [ "//chrome/*" ] | |
| 9 | |
| 10 public_deps = [ | |
| 11 "//blimp/client/core/resources:strings", | |
| 12 ] | |
| 13 } | |
| 14 | |
| 15 # Strings for //blimp/client/app, this target directly builds core strings data and does not check | |
| 16 # the |enable_blimp_client| build flag. | |
| 17 group("app_strings") { | |
| 18 visibility = [ "//blimp/client/app/*" ] | |
| 19 | |
| 20 public_deps = [ | |
| 21 "//blimp/client/core/resources:string_data", | |
| 22 ] | |
| 23 } | |
| OLD | NEW |