| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'bookmarks_core_browser', | 8 'target_name': 'bookmarks_core_browser', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ], | 75 ], |
| 76 }, | 76 }, |
| 77 { | 77 { |
| 78 'target_name': 'bookmarks_core_test_support', | 78 'target_name': 'bookmarks_core_test_support', |
| 79 'type': 'static_library', | 79 'type': 'static_library', |
| 80 'include_dirs': [ | 80 'include_dirs': [ |
| 81 '..', | 81 '..', |
| 82 ], | 82 ], |
| 83 'dependencies': [ | 83 'dependencies': [ |
| 84 '../base/base.gyp:base', | 84 '../base/base.gyp:base', |
| 85 '../ui/events/platform/events_platform.gyp:events_platform', |
| 85 '../url/url.gyp:url_lib', | 86 '../url/url.gyp:url_lib', |
| 86 'bookmarks_core_browser', | 87 'bookmarks_core_browser', |
| 87 ], | 88 ], |
| 88 'sources': [ | 89 'sources': [ |
| 89 'bookmarks/core/test/bookmark_test_helpers.cc', | 90 'bookmarks/core/test/bookmark_test_helpers.cc', |
| 90 'bookmarks/core/test/bookmark_test_helpers.h', | 91 'bookmarks/core/test/bookmark_test_helpers.h', |
| 91 'bookmarks/core/test/test_bookmark_client.cc', | 92 'bookmarks/core/test/test_bookmark_client.cc', |
| 92 'bookmarks/core/test/test_bookmark_client.h', | 93 'bookmarks/core/test/test_bookmark_client.h', |
| 93 ], | 94 ], |
| 95 'conditions': [ |
| 96 ['use_x11==1', { |
| 97 'dependencies': [ |
| 98 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platfo
rm', |
| 99 ], |
| 100 }], |
| 101 ], |
| 94 }, | 102 }, |
| 95 ], | 103 ], |
| 96 } | 104 } |
| OLD | NEW |