OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
584 '<(SHARED_INTERMEDIATE_DIR)', | 584 '<(SHARED_INTERMEDIATE_DIR)', |
585 ], | 585 ], |
586 }, | 586 }, |
587 # Because posix_version generates a header, we must set the | 587 # Because posix_version generates a header, we must set the |
588 # hard_dependency flag. | 588 # hard_dependency flag. |
589 'hard_dependency': 1, | 589 'hard_dependency': 1, |
590 'actions': [ | 590 'actions': [ |
591 { | 591 { |
592 'action_name': 'posix_version', | 592 'action_name': 'posix_version', |
593 'variables': { | 593 'variables': { |
594 'lastchange_path': | 594 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', |
595 '<(DEPTH)/build/util/LASTCHANGE', | 595 'version_py_path': '<(DEPTH)/build/util//version.py', |
Ken Russell (switch to Gerrit)
2014/02/19 08:22:24
Double '/'
MAD
2014/02/20 14:39:29
Done.
| |
596 'version_py_path': 'tools/build/version.py', | |
597 'version_path': 'VERSION', | 596 'version_path': 'VERSION', |
598 'template_input_path': 'common/chrome_version_info_posix.h.versi on', | 597 'template_input_path': 'common/chrome_version_info_posix.h.versi on', |
599 }, | 598 }, |
600 'conditions': [ | 599 'conditions': [ |
601 [ 'branding == "Chrome"', { | 600 [ 'branding == "Chrome"', { |
602 'variables': { | 601 'variables': { |
603 'branding_path': | 602 'branding_path': |
604 'app/theme/google_chrome/BRANDING', | 603 'app/theme/google_chrome/BRANDING', |
605 }, | 604 }, |
606 }, { # else branding!="Chrome" | 605 }, { # else branding!="Chrome" |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
745 'common/metrics/proto/user_action_event.proto', | 744 'common/metrics/proto/user_action_event.proto', |
746 ], | 745 ], |
747 'variables': { | 746 'variables': { |
748 'proto_in_dir': 'common/metrics/proto', | 747 'proto_in_dir': 'common/metrics/proto', |
749 'proto_out_dir': 'chrome/common/metrics/proto', | 748 'proto_out_dir': 'chrome/common/metrics/proto', |
750 }, | 749 }, |
751 'includes': [ '../build/protoc.gypi' ], | 750 'includes': [ '../build/protoc.gypi' ], |
752 }, | 751 }, |
753 ], | 752 ], |
754 } | 753 } |
OLD | NEW |