Chromium Code Reviews| 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 'targets': [ | 6 'targets': [ |
| 6 { | 7 { |
| 7 'target_name': 'dll_hash', | 8 'target_name': 'history_core_browser', |
| 8 'type': 'static_library', | 9 'type': 'static_library', |
|
blundell
2014/05/27 09:56:38
i think this has to be type None until it has sour
sdefresne
2014/05/28 17:10:42
Done.
| |
| 10 'include_dirs': [ | |
| 11 '..', | |
| 12 ], | |
| 9 'dependencies': [ | 13 'dependencies': [ |
| 10 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 11 ], | 15 ], |
| 12 'sources': [ | 16 'sources': [ |
| 13 'dll_hash/dll_hash.cc', | 17 'history/core/browser/history_client.h', |
| 14 'dll_hash/dll_hash.h', | |
| 15 ], | 18 ], |
| 16 }, | 19 }, |
| 17 { | 20 { |
| 18 'target_name': 'dll_hash_main', | 21 'target_name': 'history_core_test_support', |
| 19 'type': 'executable', | 22 'type': 'static_library', |
| 20 'dependencies': [ | |
| 21 'dll_hash', | |
| 22 ], | |
| 23 'include_dirs': [ | 23 'include_dirs': [ |
| 24 '..', | 24 '..', |
| 25 ], | 25 ], |
| 26 'dependencies': [ | |
| 27 'history_core_browser', | |
| 28 '../base/base.gyp:base', | |
| 29 ], | |
| 26 'sources': [ | 30 'sources': [ |
| 27 'dll_hash/dll_hash_main.cc', | 31 'history/core/browser/test_history_client.cc', |
|
blundell
2014/05/27 09:56:38
history/core/test
sdefresne
2014/05/28 17:10:42
Done.
| |
| 32 'history/core/browser/test_history_client.h', | |
| 28 ], | 33 ], |
| 29 } | 34 }, |
| 30 ] | 35 ], |
| 31 } | 36 } |
| OLD | NEW |