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', | |
45 ], | 39 ], |
46 }, | 40 }, |
47 ], | 41 ], |
48 'conditions': [ | 42 'conditions': [ |
49 ['OS=="win"', { | 43 ['OS=="win"', { |
50 'targets': [ | 44 'targets': [ |
51 { | 45 { |
52 'target_name': 'app_base_nacl_win64', | 46 'target_name': 'app_base_nacl_win64', |
53 'type': 'static_library', | 47 'type': 'static_library', |
54 'defines': [ | 48 'defines': [ |
(...skipping 14 matching lines...) Expand all Loading... |
69 'configurations': { | 63 'configurations': { |
70 'Common_Base': { | 64 'Common_Base': { |
71 'msvs_target_platform': 'x64', | 65 'msvs_target_platform': 'x64', |
72 }, | 66 }, |
73 }, | 67 }, |
74 }, | 68 }, |
75 ], | 69 ], |
76 }], | 70 }], |
77 ], | 71 ], |
78 } | 72 } |
OLD | NEW |