OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'app_base', | 8 'target_name': 'app_base', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 18 matching lines...) Expand all Loading... |
29 'sql/connection.cc', | 29 'sql/connection.cc', |
30 'sql/connection.h', | 30 'sql/connection.h', |
31 'sql/diagnostic_error_delegate.h', | 31 'sql/diagnostic_error_delegate.h', |
32 'sql/init_status.h', | 32 'sql/init_status.h', |
33 'sql/meta_table.cc', | 33 'sql/meta_table.cc', |
34 'sql/meta_table.h', | 34 'sql/meta_table.h', |
35 'sql/statement.cc', | 35 'sql/statement.cc', |
36 'sql/statement.h', | 36 'sql/statement.h', |
37 'sql/transaction.cc', | 37 'sql/transaction.cc', |
38 'sql/transaction.h', | 38 'sql/transaction.h', |
| 39 'win/iat_patch_function.cc', |
| 40 'win/iat_patch_function.h', |
| 41 'win/scoped_co_mem.h', |
| 42 'win/scoped_com_initializer.h', |
| 43 'win/shell.cc', |
| 44 'win/shell.h', |
39 ], | 45 ], |
40 }, | 46 }, |
41 ], | 47 ], |
42 'conditions': [ | 48 'conditions': [ |
43 ['OS=="win"', { | 49 ['OS=="win"', { |
44 'targets': [ | 50 'targets': [ |
45 { | 51 { |
46 'target_name': 'app_base_nacl_win64', | 52 'target_name': 'app_base_nacl_win64', |
47 'type': 'static_library', | 53 'type': 'static_library', |
48 'defines': [ | 54 'defines': [ |
(...skipping 14 matching lines...) Expand all Loading... |
63 'configurations': { | 69 'configurations': { |
64 'Common_Base': { | 70 'Common_Base': { |
65 'msvs_target_platform': 'x64', | 71 'msvs_target_platform': 'x64', |
66 }, | 72 }, |
67 }, | 73 }, |
68 }, | 74 }, |
69 ], | 75 ], |
70 }], | 76 }], |
71 ], | 77 ], |
72 } | 78 } |
OLD | NEW |