| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("test_support_win8") { | 5 source_set("test_support_win8") { |
| 6 sources = [ | 6 sources = [ |
| 7 "test/open_with_dialog_async.cc", | 7 "test/open_with_dialog_async.cc", |
| 8 "test/open_with_dialog_async.h", | 8 "test/open_with_dialog_async.h", |
| 9 "test/open_with_dialog_controller.cc", | 9 "test/open_with_dialog_controller.cc", |
| 10 "test/open_with_dialog_controller.h", | 10 "test/open_with_dialog_controller.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ":test_registrar_constants", | 43 ":test_registrar_constants", |
| 44 "//base", | 44 "//base", |
| 45 "//build/config/sanitizers:deps", | 45 "//build/config/sanitizers:deps", |
| 46 | 46 |
| 47 # Chrome is the default viewer process currently used by the tests. | 47 # Chrome is the default viewer process currently used by the tests. |
| 48 # TODO(robertshield): Investigate building a standalone metro viewer | 48 # TODO(robertshield): Investigate building a standalone metro viewer |
| 49 # process. | 49 # process. |
| 50 "//chrome", | 50 "//chrome", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 |
| 54 copy("visual_elements_resources") { |
| 55 sources = [ |
| 56 "resources/Logo.png", |
| 57 "resources/SecondaryTile.png", |
| 58 "resources/SmallLogo.png", |
| 59 "resources/chrome.VisualElementsManifest.xml", |
| 60 ] |
| 61 |
| 62 outputs = [ |
| 63 "$root_out_dir/{{source_file_part}}", |
| 64 ] |
| 65 } |
| OLD | NEW |