OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', | 7 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', |
8 # 'branding_dir' is set in the 'conditions' section at the bottom. | 8 # 'branding_dir' is set in the 'conditions' section at the bottom. |
9 }, | 9 }, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
317 '--output_dir=<(PRODUCT_DIR)', | 317 '--output_dir=<(PRODUCT_DIR)', |
318 '--input_file=<(RULE_INPUT_PATH)', | 318 '--input_file=<(RULE_INPUT_PATH)', |
319 '--header_output_dir=<(INTERMEDIATE_DIR)', | 319 '--header_output_dir=<(INTERMEDIATE_DIR)', |
320 # TODO(sgk): may just use environment variables | 320 # TODO(sgk): may just use environment variables |
321 #'--distribution=$(CHROMIUM_BUILD)', | 321 #'--distribution=$(CHROMIUM_BUILD)', |
322 '--distribution=_google_chrome', | 322 '--distribution=_google_chrome', |
323 ], | 323 ], |
324 }, | 324 }, |
325 ], | 325 ], |
326 'conditions': [ | 326 'conditions': [ |
327 ['component == "shared_library"', { | |
328 'copies': [ | |
329 { | |
330 'destination': '<(PRODUCT_DIR)', | |
331 'files': [ | |
332 'installer/setup/setup.exe.manifest', | |
333 ] | |
grt (UTC plus 2)
2012/05/11 15:10:50
commas here, too
gab
2012/05/11 15:56:51
Done.
| |
334 } | |
335 ], | |
336 }], | |
327 # TODO(mark): <(branding_dir) should be defined by the | 337 # TODO(mark): <(branding_dir) should be defined by the |
328 # global condition block at the bottom of the file, but | 338 # global condition block at the bottom of the file, but |
329 # this doesn't work due to the following issue: | 339 # this doesn't work due to the following issue: |
330 # | 340 # |
331 # http://code.google.com/p/gyp/issues/detail?id=22 | 341 # http://code.google.com/p/gyp/issues/detail?id=22 |
332 # | 342 # |
333 # Remove this block once the above issue is fixed. | 343 # Remove this block once the above issue is fixed. |
334 [ 'branding == "Chrome"', { | 344 [ 'branding == "Chrome"', { |
335 'variables': { | 345 'variables': { |
336 'branding_dir': 'app/theme/google_chrome', | 346 'branding_dir': 'app/theme/google_chrome', |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
974 'variables': { | 984 'variables': { |
975 'branding_dir': 'app/theme/google_chrome', | 985 'branding_dir': 'app/theme/google_chrome', |
976 }, | 986 }, |
977 }, { # else branding!="Chrome" | 987 }, { # else branding!="Chrome" |
978 'variables': { | 988 'variables': { |
979 'branding_dir': 'app/theme/chromium', | 989 'branding_dir': 'app/theme/chromium', |
980 }, | 990 }, |
981 }], | 991 }], |
982 ], | 992 ], |
983 } | 993 } |
OLD | NEW |