OLD | NEW |
---|---|
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'common_constants_target': 0, | 8 'common_constants_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
11 ['common_constants_target==1', { | 11 ['common_constants_target==1', { |
12 'sources': [ | 12 'sources': [ |
13 'common/chrome_constants.cc', | 13 'common/chrome_constants.cc', |
14 'common/chrome_constants.h', | 14 'common/chrome_constants.h', |
15 'common/chrome_paths.cc', | 15 'common/chrome_paths.cc', |
16 'common/chrome_paths.h', | 16 'common/chrome_paths.h', |
17 'common/chrome_paths_internal.h', | 17 'common/chrome_paths_internal.h', |
18 'common/chrome_paths_linux.cc', | 18 'common/chrome_paths_linux.cc', |
19 'common/chrome_paths_mac.mm', | 19 'common/chrome_paths_mac.mm', |
20 'common/chrome_paths_win.cc', | 20 'common/chrome_paths_win.cc', |
21 'common/chrome_switches.cc', | 21 'common/chrome_switches.cc', |
22 'common/chrome_switches.h', | 22 'common/chrome_switches.h', |
23 'common/env_vars.cc', | 23 'common/env_vars.cc', |
24 'common/env_vars.h', | 24 'common/env_vars.h', |
25 'common/json_value_serializer.cc', | 25 'common/json_value_serializer.cc', |
26 'common/json_value_serializer.h', | 26 'common/json_value_serializer.h', |
27 'common/net/gaia/gaia_constants.cc', | 27 'common/net/gaia/gaia_constants.cc', |
nsylvain
2010/07/30 17:12:49
are you supposed to svn add those files too?
Mattias Nissler (ping if slow)
2010/07/30 18:14:06
I suppose you looked at the diff to the previous p
| |
28 'common/net/gaia/gaia_constants.h', | 28 'common/net/gaia/gaia_constants.h', |
29 'common/policy_constants.cc', | |
30 'common/policy_constants.h', | |
29 'common/pref_names.cc', | 31 'common/pref_names.cc', |
30 'common/pref_names.h', | 32 'common/pref_names.h', |
31 ], | 33 ], |
32 'actions': [ | 34 'actions': [ |
33 { | 35 { |
34 'action_name': 'Make chrome_version.cc', | 36 'action_name': 'Make chrome_version.cc', |
35 'variables': { | 37 'variables': { |
36 'make_version_cc_path': 'tools/build/make_version_cc.py', | 38 'make_version_cc_path': 'tools/build/make_version_cc.py', |
37 }, | 39 }, |
38 'inputs': [ | 40 'inputs': [ |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 'configurations': { | 91 'configurations': { |
90 'Common_Base': { | 92 'Common_Base': { |
91 'msvs_target_platform': 'x64', | 93 'msvs_target_platform': 'x64', |
92 }, | 94 }, |
93 }, | 95 }, |
94 }, | 96 }, |
95 ], | 97 ], |
96 }], | 98 }], |
97 ], | 99 ], |
98 } | 100 } |
OLD | NEW |