| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'include_dirs': [ | 67 'include_dirs': [ |
| 68 '<(SHARED_INTERMEDIATE_DIR)/ui', | 68 '<(SHARED_INTERMEDIATE_DIR)/ui', |
| 69 ], | 69 ], |
| 70 'link_settings': { | 70 'link_settings': { |
| 71 'libraries': [ | 71 'libraries': [ |
| 72 '-ljnigraphics', | 72 '-ljnigraphics', |
| 73 ], | 73 ], |
| 74 }, | 74 }, |
| 75 } | 75 } |
| 76 ], | 76 ], |
| 77 ['OS=="win"', |
| 78 { |
| 79 'dependencies': [ |
| 80 '../../win8/win8.gyp:metro_viewer', |
| 81 ], |
| 82 } |
| 83 ], |
| 77 ], | 84 ], |
| 78 }, # target_name: shell_dialogs | 85 }, # target_name: shell_dialogs |
| 79 { | 86 { |
| 80 # GN version: //ui/shell_dialogs:shell_dialogs_unittests | 87 # GN version: //ui/shell_dialogs:shell_dialogs_unittests |
| 81 'target_name': 'shell_dialogs_unittests', | 88 'target_name': 'shell_dialogs_unittests', |
| 82 'type': 'executable', | 89 'type': 'executable', |
| 83 'dependencies': [ | 90 'dependencies': [ |
| 84 '../../base/base.gyp:base', | 91 '../../base/base.gyp:base', |
| 85 '../../base/base.gyp:test_support_base', | 92 '../../base/base.gyp:test_support_base', |
| 86 '../../base/base.gyp:run_all_unittests', | 93 '../../base/base.gyp:run_all_unittests', |
| 87 '../../testing/gtest.gyp:gtest', | 94 '../../testing/gtest.gyp:gtest', |
| 88 'shell_dialogs', | 95 'shell_dialogs', |
| 89 ], | 96 ], |
| 90 'sources': [ | 97 'sources': [ |
| 91 # Note: file list duplicated in GN build. | 98 # Note: file list duplicated in GN build. |
| 92 'select_file_dialog_win_unittest.cc', | 99 'select_file_dialog_win_unittest.cc', |
| 93 ], | 100 ], |
| 94 }, | 101 }, |
| 95 ], | 102 ], |
| 96 } | 103 } |
| OLD | NEW |