| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 # Note: file list duplicated in GN build. | 91 # Note: file list duplicated in GN build. |
| 92 'run_all_unittests.cc', | 92 'run_all_unittests.cc', |
| 93 'select_file_dialog_mac_unittest.mm', | 93 'select_file_dialog_mac_unittest.mm', |
| 94 'select_file_dialog_win_unittest.cc', | 94 'select_file_dialog_win_unittest.cc', |
| 95 ], | 95 ], |
| 96 'conditions' : [ | 96 'conditions' : [ |
| 97 ['OS=="mac"', | 97 ['OS=="mac"', |
| 98 { | 98 { |
| 99 'mac_bundle': 1, | 99 'mac_bundle': 1, |
| 100 'mac_bundle_resources' : [ | 100 'mac_bundle_resources' : [ |
| 101 '../../chrome/app/nibs/SaveAccessoryView.xib', | |
| 102 # The unittest expects a locale.pak file to exist in the bundle | 101 # The unittest expects a locale.pak file to exist in the bundle |
| 103 # for English-US. Copy it in from where it was generated by | 102 # for English-US. Copy it in from where it was generated by |
| 104 # ui_resources.gyp:ui_test_pak. | 103 # ui_resources.gyp:ui_test_pak. |
| 105 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', | 104 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', |
| 106 ], | 105 ], |
| 107 'dependencies': [ | 106 'dependencies': [ |
| 108 # Needed to generate locale.pak. | 107 # Needed to generate locale.pak. |
| 109 '../resources/ui_resources.gyp:ui_test_pak', | 108 '../resources/ui_resources.gyp:ui_test_pak', |
| 110 ], | 109 ], |
| 111 } | 110 } |
| 112 ], | 111 ], |
| 113 ], | 112 ], |
| 114 }, | 113 }, |
| 115 ], | 114 ], |
| 116 } | 115 } |
| OLD | NEW |