Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'browser', | 9 'target_name': 'browser', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 5045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5056 ['include', '^browser/printing/print_dialog_gtk.cc'], | 5056 ['include', '^browser/printing/print_dialog_gtk.cc'], |
| 5057 ['include', '^browser/printing/print_dialog_gtk.h'], | 5057 ['include', '^browser/printing/print_dialog_gtk.h'], |
| 5058 ], | 5058 ], |
| 5059 }], | 5059 }], |
| 5060 ['chromeos==1',{ | 5060 ['chromeos==1',{ |
| 5061 'dependencies': [ | 5061 'dependencies': [ |
| 5062 '../dbus/dbus.gyp:dbus', | 5062 '../dbus/dbus.gyp:dbus', |
| 5063 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 5063 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 5064 '../third_party/protobuf/protobuf.gyp:protoc#host', | 5064 '../third_party/protobuf/protobuf.gyp:protoc#host', |
| 5065 ], | 5065 ], |
| 5066 'conditions': [ | |
| 5067 ['system_libcros==0', { | |
| 5068 'dependencies': [ | |
| 5069 '../third_party/cros/cros_api.gyp:cros_api', | |
| 5070 ], | |
| 5071 'include_dirs': [ | |
| 5072 '../third_party/' | |
|
stevenjb (google-dont-use)
2012/06/21 16:33:56
I assume we don't need this for service_constants.
hashimoto
2012/06/22 05:46:26
As long as we use full-path ("third_party/cros_sys
| |
| 5073 ], | |
| 5074 }], | |
| 5075 ['system_libcros==1', { | |
| 5076 'link_settings': { | |
| 5077 'libraries': [ | |
| 5078 '-lcrosapi', | |
| 5079 ], | |
| 5080 }, | |
| 5081 }], | |
| 5082 ], | |
| 5083 }], | 5066 }], |
| 5084 ['os_posix == 1 and OS != "mac" and OS != "android" and gcc_version == 45', { | 5067 ['os_posix == 1 and OS != "mac" and OS != "android" and gcc_version == 45', { |
| 5085 # Avoid gcc 4.5 miscompilation of template_url.cc | 5068 # Avoid gcc 4.5 miscompilation of template_url.cc |
| 5086 # as per http://crbug.com/41887 | 5069 # as per http://crbug.com/41887 |
| 5087 'cflags': [ | 5070 'cflags': [ |
| 5088 '-fno-ipa-cp', | 5071 '-fno-ipa-cp', |
| 5089 ], | 5072 ], |
| 5090 }], | 5073 }], |
| 5091 ], | 5074 ], |
| 5092 }], | 5075 }], |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5240 'browser/metrics/proto/study.proto', | 5223 'browser/metrics/proto/study.proto', |
| 5241 ], | 5224 ], |
| 5242 'variables': { | 5225 'variables': { |
| 5243 'proto_in_dir': 'browser/metrics/proto', | 5226 'proto_in_dir': 'browser/metrics/proto', |
| 5244 'proto_out_dir': 'chrome/browser/metrics/proto', | 5227 'proto_out_dir': 'chrome/browser/metrics/proto', |
| 5245 }, | 5228 }, |
| 5246 'includes': [ '../build/protoc.gypi' ] | 5229 'includes': [ '../build/protoc.gypi' ] |
| 5247 }, | 5230 }, |
| 5248 ], | 5231 ], |
| 5249 } | 5232 } |
| OLD | NEW |